diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b798bb..ccdcdbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.12.1 + +* Fix incorrect tile layer version numbers in tile-join output + ## 1.12.0 * Fix a tile-join bug that would retain fields that were supposed to be excluded diff --git a/Makefile b/Makefile index a955dac..5645f15 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ clean: rm -f tippecanoe *.o indent: - clang-format -i -style="{BasedOnStyle: Google, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, ColumnLimit: 0, ContinuationIndentWidth: 8, SpaceAfterCStyleCast: true, IndentCaseLabels: false, AllowShortBlocksOnASingleLine: false, AllowShortFunctionsOnASingleLine: false}" $(C) $(H) + clang-format -i -style="{BasedOnStyle: Google, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, ColumnLimit: 0, ContinuationIndentWidth: 8, SpaceAfterCStyleCast: true, IndentCaseLabels: false, AllowShortBlocksOnASingleLine: false, AllowShortFunctionsOnASingleLine: false, SortIncludes: false}" $(C) $(H) TESTS = $(wildcard tests/*/out/*.json) SPACE = $(NULL) $(NULL) diff --git a/decode.cpp b/decode.cpp index 7f5bfa2..2be58bb 100644 --- a/decode.cpp +++ b/decode.cpp @@ -80,6 +80,7 @@ void handle(std::string message, int z, unsigned x, unsigned y, int describe) { printf("{ \"type\": \"FeatureCollection\""); printf(", \"properties\": { \"layer\": "); printq(layer.name.c_str()); + printf(", \"version\": %d, \"extent\": %d", layer.version, layer.extent); printf(" }"); printf(", \"features\": [\n"); diff --git a/geometry.cpp b/geometry.cpp index 88b3f7d..152f68c 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -314,8 +314,7 @@ static void decode_clipped(ClipperLib::PolyNode *t, drawvec &out) { } } } - nextring: - ; + nextring:; } // Then reverse the winding order of any rings that turned out diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 98495f8..0f82421 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -1,15 +1,10 @@ .TH tippecanoe .PP -Builds vector tilesets -\[la]https://www.mapbox.com/developers/vector-tiles/\[ra] from large collections of GeoJSON -\[la]http://geojson.org/\[ra] -features. This is a tool for making maps from huge datasets -\[la]MADE_WITH.md\[ra]\&. +Builds vector tilesets \[la]https://www.mapbox.com/developers/vector-tiles/\[ra] from large collections of GeoJSON \[la]http://geojson.org/\[ra] +features. This is a tool for making maps from huge datasets \[la]MADE_WITH.md\[ra]\&. .PP -[Build Status](https://travis\-ci.org/mapbox/tippecanoe.svg) -\[la]https://travis-ci.org/mapbox/tippecanoe\[ra] -[Coverage Status](https://coveralls.io/repos/mapbox/tippecanoe/badge.svg?branch=master&service=github) -\[la]https://coveralls.io/github/mapbox/tippecanoe?branch=master\[ra] +[Build Status](https://travis\-ci.org/mapbox/tippecanoe.svg) \[la]https://travis-ci.org/mapbox/tippecanoe\[ra] +[Coverage Status](https://coveralls.io/repos/mapbox/tippecanoe/badge.svg?branch=master&service=github) \[la]https://coveralls.io/github/mapbox/tippecanoe?branch=master\[ra] .SH Intent .PP The goal of Tippecanoe is to enable making a scale\-independent view of your data, @@ -18,8 +13,7 @@ the density and texture of the data rather than a simplification from dropping supposedly unimportant features or clustering or aggregating them. .PP If you give it all of OpenStreetMap and zoom out, it should give you back -something that looks like "All Streets -\[la]http://benfry.com/allstreets/map5.html\[ra]" +something that looks like "All Streets \[la]http://benfry.com/allstreets/map5.html\[ra]" rather than something that looks like an Interstate road atlas. .PP If you give it all the building footprints in Los Angeles and zoom out @@ -32,8 +26,7 @@ see the shape and relative popularity of every point of interest and every significant travel corridor. .SH Installation .PP -The easiest way to install tippecanoe on OSX is with Homebrew -\[la]http://brew.sh/\[ra]: +The easiest way to install tippecanoe on OSX is with Homebrew \[la]http://brew.sh/\[ra]: .PP .RS .nf @@ -225,6 +218,7 @@ awk 'BEGIN { dotsize = 2; # up to you to decide basezoom = 14; # tippecanoe \-z 14 rate = 2.5; # tippecanoe \-r 2.5 + print " marker\-line\-width: 0;"; print " marker\-ignore\-placement: true;"; print " marker\-allow\-overlap: true;"; @@ -232,6 +226,7 @@ awk 'BEGIN { for (i = basezoom + 1; i <= 22; i++) { print " [zoom >= " i "] { marker\-width: " (dotsize * exp(log(sqrt(rate)) * (i \- basezoom))) "; }"; } + exit(0); }' .fi @@ -299,12 +294,10 @@ make install .RE .SH Examples .PP -Check out some examples of maps made with tippecanoe -\[la]MADE_WITH.md\[ra] +Check out some examples of maps made with tippecanoe \[la]MADE_WITH.md\[ra] .SH Name .PP -The name is a joking reference -\[la]http://en.wikipedia.org/wiki/Tippecanoe_and_Tyler_Too\[ra] to a "tiler" for making map tiles. +The name is a joking reference \[la]http://en.wikipedia.org/wiki/Tippecanoe_and_Tyler_Too\[ra] to a "tiler" for making map tiles. .SH tile\-join .PP Tile\-join is a tool for joining new attributes from a CSV file to features that diff --git a/mvt.cpp b/mvt.cpp index 4f31b2d..669a58d 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -166,6 +166,10 @@ bool mvt_tile::decode(std::string &message) { layer.extent = layer_reader.get_uint32(); break; + case 15: /* version */ + layer.version = layer_reader.get_uint32(); + break; + case 2: /* feature */ { protozero::pbf_reader feature_reader(layer_reader.get_message()); diff --git a/tests/curve/out/-z2.json b/tests/curve/out/-z2.json index b8bd15f..290106e 100644 --- a/tests/curve/out/-z2.json +++ b/tests/curve/out/-z2.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } @@ -19,7 +19,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.724609, 0.000000 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 0.000000, -73.226700 ], [ 3.515625, -73.264704 ], [ 3.515625, -77.608282 ], [ 0.000000, -77.551572 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -109.731445, 0.000000 ], [ -110.786133, 3.513421 ], [ -93.779297, 3.513421 ], [ -92.724609, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.751953, 0.000000 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 0.000000, -78.134493 ], [ 3.515625, -78.179588 ], [ 3.515625, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 3.513421 ], [ -115.883789, 3.513421 ], [ -115.751953, 0.000000 ] ] ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -92.724609, 0.000000 ], [ -91.625977, -3.513421 ], [ -108.632812, -3.513421 ], [ -109.731445, 0.000000 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -115.751953, 0.000000 ], [ -115.620117, -3.513421 ], [ -139.042969, -3.513421 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 3.515625, 83.004844 ], [ 3.515625, 80.004799 ] ] ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -73.226700 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ 0.000000, -77.551572 ], [ -3.515625, -77.494607 ], [ -3.515625, -73.201317 ], [ 0.000000, -73.226700 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -78.134493 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -3.515625, -81.996942 ], [ -3.515625, -78.098296 ], [ 0.000000, -78.134493 ] ] ] } } @@ -43,19 +43,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -3.515625, 80.004799 ], [ -3.515625, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.873535, -66.513260 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ -90.000000, -77.024626 ], [ -88.242188, -77.044346 ], [ -88.242188, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, -65.802776 ], [ -112.917480, -65.802776 ], [ -112.873535, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.702637, 0.000000 ], [ -90.000000, -8.733077 ], [ -88.242188, -14.370834 ], [ -88.242188, -51.371780 ], [ -90.000000, -48.936935 ], [ -97.009277, -37.996163 ], [ -109.709473, 0.000000 ], [ -110.258789, 1.757537 ], [ -93.229980, 1.757537 ], [ -92.702637, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.751953, 0.000000 ], [ -112.873535, -66.513260 ], [ -112.807617, -67.204032 ], [ -139.020996, -67.204032 ], [ -139.020996, 1.757537 ], [ -115.817871, 1.757537 ], [ -115.751953, 0.000000 ] ] ] } } @@ -63,7 +63,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.600586, 66.513260 ], [ -103.007812, 32.008076 ], [ -92.702637, 0.000000 ], [ -92.175293, -1.757537 ], [ -109.182129, -1.757537 ], [ -109.731445, 0.000000 ], [ -118.015137, 26.017298 ], [ -117.180176, 66.513260 ], [ -117.158203, 67.204032 ], [ -105.666504, 67.204032 ], [ -105.600586, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.608398, 66.513260 ], [ -115.751953, 0.000000 ], [ -115.686035, -1.757537 ], [ -139.020996, -1.757537 ], [ -139.020996, 67.204032 ], [ -118.674316, 67.204032 ], [ -118.608398, 66.513260 ] ] ] } } @@ -71,7 +71,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 82.489081 ], [ -88.242188, 82.384973 ], [ -88.242188, 79.839471 ], [ -90.000000, 79.134119 ], [ -106.018066, 70.005567 ], [ -105.600586, 66.513260 ], [ -105.512695, 65.802776 ], [ -117.202148, 65.802776 ], [ -117.180176, 66.513260 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -90.000000, 82.489081 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 79.951265 ], [ -90.000000, 79.576460 ], [ -119.003906, 71.002660 ], [ -118.608398, 66.513260 ], [ -118.564453, 65.802776 ], [ -139.020996, 65.802776 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ -88.242188, 83.002167 ], [ -88.242188, 79.951265 ] ] ] } } @@ -79,7 +79,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.382812, -66.513260 ], [ -28.015137, -72.996909 ], [ 0.000000, -73.233040 ], [ 1.757812, -73.245712 ], [ 1.757812, -77.575232 ], [ 0.000000, -77.546835 ], [ -33.002930, -76.999935 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -75.234375, -65.802776 ], [ -54.645996, -65.802776 ], [ -52.382812, -66.513260 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, -77.024626 ], [ 0.000000, -78.134493 ], [ 1.757812, -78.157062 ], [ 1.757812, -81.996942 ], [ -91.757812, -81.996942 ], [ -91.757812, -76.999935 ], [ -90.000000, -77.024626 ] ] ] } } @@ -87,13 +87,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, -8.733077 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -52.382812, -66.513260 ], [ -50.119629, -67.204032 ], [ -71.433105, -67.204032 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -90.000000, -48.936935 ], [ -91.757812, -46.377254 ], [ -91.757812, -3.030812 ], [ -90.000000, -8.733077 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 82.489081 ], [ -82.001953, 82.000000 ], [ -90.000000, 79.134119 ], [ -91.757812, 78.376004 ], [ -91.757812, 82.591775 ], [ -90.000000, 82.489081 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 80.000984 ], [ -88.000488, 80.000984 ], [ -90.000000, 79.576460 ], [ -91.757812, 79.191956 ], [ -91.757812, 83.002167 ], [ 1.757812, 83.002167 ], [ 1.757812, 80.000984 ] ] ] } } @@ -101,7 +101,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -73.233040 ], [ 90.000000, -73.995328 ], [ 91.757812, -73.995328 ], [ 91.757812, -78.975588 ], [ 90.000000, -78.950349 ], [ 0.000000, -77.551572 ], [ -1.757812, -77.523122 ], [ -1.757812, -73.220358 ], [ 0.000000, -73.233040 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -78.139010 ], [ 90.000000, -79.158943 ], [ 91.757812, -79.179588 ], [ 91.757812, -81.996942 ], [ -1.757812, -81.996942 ], [ -1.757812, -78.116408 ], [ 0.000000, -78.139010 ] ] ] } } @@ -109,13 +109,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 80.000984 ], [ -1.757812, 80.000984 ], [ -1.757812, 83.002167 ], [ 91.757812, 83.002167 ], [ 91.757812, 80.000984 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ 90.000000, -78.950349 ], [ 88.242188, -78.925053 ], [ 88.242188, -73.977144 ], [ 90.000000, -73.995328 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, -79.158943 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ 88.242188, -81.996942 ], [ 88.242188, -79.142400 ], [ 90.000000, -79.158943 ] ] ] } } @@ -123,7 +123,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ 88.242188, 80.000984 ], [ 88.242188, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } ] } ] } diff --git a/tests/curve/out/-z2_--no-clipping.json b/tests/curve/out/-z2_--no-clipping.json index 39dd00c..51d7bca 100644 --- a/tests/curve/out/-z2_--no-clipping.json +++ b/tests/curve/out/-z2_--no-clipping.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } @@ -19,7 +19,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } @@ -43,19 +43,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -63,7 +63,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -71,7 +71,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -79,7 +79,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -87,13 +87,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -101,7 +101,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -109,13 +109,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } @@ -123,7 +123,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } ] } ] } diff --git a/tests/curve/out/-z2_--no-duplication.json b/tests/curve/out/-z2_--no-duplication.json index c35ecbc..d13948e 100644 --- a/tests/curve/out/-z2_--no-duplication.json +++ b/tests/curve/out/-z2_--no-duplication.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } @@ -19,7 +19,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } diff --git a/tests/dateline/out/-z5.json b/tests/dateline/out/-z5.json index ea98c06..d453345 100644 --- a/tests/dateline/out/-z5.json +++ b/tests/dateline/out/-z5.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.539062, 44.339565 ], [ -164.882812, 43.389082 ], [ -153.281250, 46.619261 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.183902 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.510643 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.689872 ], [ -185.976562, 58.859224 ], [ -187.031250, 56.992883 ], [ -187.031250, 65.730626 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.542167 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.616870 ], [ -169.453125, 34.957995 ], [ -180.000000, 36.527295 ], [ -184.218750, 37.160317 ], [ -187.031250, 38.891033 ], [ -187.031250, 50.457504 ], [ -185.976562, 47.279229 ], [ -177.539062, 44.339565 ] ] ], [ [ [ 187.031250, 35.460670 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.028022 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.811557 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.542167 ], [ 187.031250, 68.007571 ], [ 187.031250, 63.743631 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.689872 ], [ 174.023438, 58.859224 ], [ 171.562500, 54.418930 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 187.031250, 44.024422 ], [ 187.031250, 35.460670 ] ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } @@ -19,7 +19,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.357138 ], [ -153.281250, 46.589069 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.160078 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.491725 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.669024 ], [ -183.515625, 60.020952 ], [ -183.515625, 66.981666 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.525373 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.582526 ], [ -169.453125, 34.921971 ], [ -183.515625, 37.055177 ], [ -183.515625, 46.437857 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.357138 ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } @@ -27,13 +27,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 183.515625, 35.995785 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.002826 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.792848 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.525373 ], [ 183.515625, 67.776025 ], [ 183.515625, 62.935235 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.669024 ], [ 174.023438, 58.836490 ], [ 171.562500, 54.393352 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 183.515625, 44.276671 ], [ 183.515625, 35.995785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.341160 ], [ -153.281250, 46.573967 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.148161 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.482261 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.658595 ], [ -181.757812, 60.844911 ], [ -181.757812, 67.204032 ], [ -150.688477, 67.204032 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.565348 ], [ -169.453125, 34.903953 ], [ -180.000000, 36.527295 ], [ -181.757812, 36.791691 ], [ -181.757812, 45.828799 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.341160 ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } @@ -41,427 +41,427 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -143.679199, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 67.390599 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 36.261992 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.990222 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.783488 ], [ 175.187988, 66.513260 ], [ 177.143555, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 62.441242 ], [ 180.000000, 61.658595 ], [ 174.023438, 58.825118 ], [ 171.562500, 54.380557 ], [ 174.023438, 47.279229 ], [ 181.757812, 44.590467 ], [ 181.757812, 36.261992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 65.802776 ], [ 173.232422, 65.802776 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 181.757812, 67.642676 ], [ 181.757812, 65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.404541, 40.979898 ], [ -146.250000, 38.556757 ], [ -169.453125, 34.894942 ], [ -180.000000, 36.527295 ], [ -180.878906, 36.659606 ], [ -180.878906, 41.640078 ], [ -142.613525, 41.640078 ], [ -143.404541, 40.979898 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.333169 ], [ -153.281250, 46.566414 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.142200 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.477528 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.653379 ], [ -180.878906, 61.249102 ], [ -180.878906, 66.861082 ], [ -148.754883, 66.861082 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -134.121094, 61.217379 ], [ -134.121094, 48.305121 ], [ -135.000000, 47.650588 ], [ -144.195557, 40.313043 ], [ -180.878906, 40.313043 ], [ -180.878906, 45.521744 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.333169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.887695, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 67.453869 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.878906, 46.987747 ], [ -135.878906, 62.915233 ], [ -135.000000, 62.573106 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -2.109375, 45.583290 ], [ 0.000000, 46.316584 ], [ 0.878906, 46.619261 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.878906, 46.012224 ], [ 0.000000, 46.316584 ], [ 16.171875, 51.618017 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 36.385913 ], [ 180.000000, 36.527295 ], [ 175.781250, 37.160317 ], [ 169.420166, 40.979898 ], [ 168.288574, 41.640078 ], [ 180.878906, 41.640078 ], [ 180.878906, 36.385913 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 40.313043 ], [ 170.562744, 40.313043 ], [ 169.420166, 40.979898 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.983918 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.778807 ], [ 175.187988, 66.513260 ], [ 176.165771, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 62.047288 ], [ 180.000000, 61.653379 ], [ 174.023438, 58.819430 ], [ 171.562500, 54.374158 ], [ 174.023438, 47.279229 ], [ 180.878906, 44.902578 ], [ 180.878906, 40.313043 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 66.160511 ], [ 174.210205, 66.160511 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.878906, 67.579908 ], [ 180.878906, 66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.060547, 36.866438 ], [ -157.500000, 36.800488 ], [ -169.453125, 34.890437 ], [ -180.000000, 36.522881 ], [ -180.439453, 36.589068 ], [ -180.439453, 41.310824 ], [ -157.060547, 41.310824 ], [ -157.060547, 36.866438 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.329174 ], [ -157.500000, 45.406164 ], [ -157.060547, 45.529441 ], [ -157.060547, 40.647304 ], [ -180.439453, 40.647304 ], [ -180.439453, 45.367584 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.329174 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.060547, 66.687784 ], [ -157.060547, 63.484863 ], [ -157.500000, 63.597448 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.475161 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.650771 ], [ -180.439453, 61.451896 ], [ -180.439453, 66.687784 ], [ -157.060547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.153165 ], [ -157.060547, 68.149077 ], [ -157.060547, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 67.485442 ], [ -180.000000, 67.514872 ], [ -169.101562, 68.269387 ], [ -157.500000, 68.153165 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.410034, 40.979898 ], [ -146.250000, 38.552461 ], [ -157.500000, 36.800488 ], [ -157.939453, 36.730080 ], [ -157.939453, 41.310824 ], [ -143.014526, 41.310824 ], [ -143.410034, 40.979898 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.281250, 46.562637 ], [ -144.492188, 51.179343 ], [ -143.959351, 55.776573 ], [ -143.931885, 56.022948 ], [ -134.560547, 56.022948 ], [ -134.560547, 47.978891 ], [ -135.000000, 47.650588 ], [ -143.800049, 40.647304 ], [ -157.939453, 40.647304 ], [ -157.939453, 45.286482 ], [ -157.500000, 45.406164 ], [ -153.281250, 46.562637 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.789062, 57.139220 ], [ -148.007812, 61.100789 ], [ -157.500000, 63.597448 ], [ -157.939453, 63.707156 ], [ -157.939453, 66.687784 ], [ -147.782593, 66.687784 ], [ -146.815796, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.560547, 62.232115 ], [ -134.560547, 55.528631 ], [ -143.992310, 55.528631 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.139220 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.153165 ], [ -156.093750, 68.138852 ], [ -146.815796, 66.513260 ], [ -145.848999, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 68.159297 ], [ -157.500000, 68.153165 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.984253, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.439453, 47.320207 ], [ -135.439453, 56.022948 ], [ -132.072144, 56.022948 ], [ -131.984253, 55.776573 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -131.984253, 55.776573 ], [ -131.890869, 55.528631 ], [ -135.439453, 55.528631 ], [ -135.439453, 62.744665 ], [ -135.000000, 62.570575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -2.109375, 45.583290 ], [ 0.000000, 46.316584 ], [ 0.439453, 46.468133 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.439453, 46.164614 ], [ 0.000000, 46.316584 ], [ 16.171875, 51.618017 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 52.915527 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.980766 ], [ 157.445068, 55.776573 ], [ 157.648315, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 52.915527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.445068, 55.776573 ], [ 157.500000, 55.841398 ], [ 157.939453, 56.371335 ], [ 157.939453, 55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 36.456636 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 168.859863, 41.310824 ], [ 180.439453, 41.310824 ], [ 180.439453, 36.456636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.562500, 54.370959 ], [ 174.023438, 47.279229 ], [ 180.439453, 45.058001 ], [ 180.439453, 40.647304 ], [ 169.991455, 40.647304 ], [ 169.425659, 40.979898 ], [ 161.718750, 45.336702 ], [ 157.500000, 53.722717 ], [ 157.060547, 54.514704 ], [ 157.060547, 55.307264 ], [ 157.648315, 56.022948 ], [ 172.441406, 56.022948 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.370959 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 58.816586 ], [ 172.309570, 55.776573 ], [ 172.172241, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.500000, 55.841398 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.776466 ], [ 175.187988, 66.513260 ], [ 175.676880, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 61.850966 ], [ 180.000000, 61.650771 ], [ 174.023438, 58.816586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 66.337505 ], [ 174.699097, 66.337505 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.514872 ], [ 180.439453, 67.546363 ], [ 180.439453, 66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, 35.038992 ], [ -168.750000, 35.003003 ], [ -169.453125, 34.888184 ], [ -180.000000, 36.522881 ], [ -180.219727, 36.555982 ], [ -180.219727, 41.145570 ], [ -168.530273, 41.145570 ], [ -168.530273, 35.038992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.219727, 40.813809 ], [ -180.219727, 45.290347 ], [ -177.539062, 44.339565 ], [ -168.750000, 43.640051 ], [ -168.530273, 43.622159 ], [ -168.530273, 40.813809 ], [ -180.219727, 40.813809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.219727, 61.710706 ], [ -179.868164, 61.710706 ], [ -180.219727, 61.551493 ], [ -180.219727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, 66.600676 ], [ -168.530273, 64.423037 ], [ -168.750000, 64.434892 ], [ -169.453125, 64.473977 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.650771 ], [ -180.219727, 61.551493 ], [ -180.219727, 66.600676 ], [ -168.530273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.750000, 68.266336 ], [ -168.530273, 68.264302 ], [ -168.530273, 66.425537 ], [ -180.219727, 66.425537 ], [ -180.219727, 67.500161 ], [ -180.000000, 67.515922 ], [ -169.101562, 68.269387 ], [ -168.750000, 68.266336 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 36.833470 ], [ -157.500000, 36.798289 ], [ -168.750000, 35.003003 ], [ -168.969727, 34.966999 ], [ -168.969727, 41.145570 ], [ -157.280273, 41.145570 ], [ -157.280273, 36.833470 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.327176 ], [ -157.500000, 45.406164 ], [ -157.280273, 45.467836 ], [ -157.280273, 40.813809 ], [ -168.969727, 40.813809 ], [ -168.969727, 43.657937 ], [ -168.750000, 43.640051 ], [ -164.882812, 43.327176 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.554688, 63.860036 ], [ -168.750000, 64.434892 ], [ -168.969727, 64.447927 ], [ -168.969727, 66.600676 ], [ -157.280273, 66.600676 ], [ -157.280273, 63.541211 ], [ -157.500000, 63.596226 ], [ -158.554688, 63.860036 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.750000, 68.266336 ], [ -157.500000, 68.154187 ], [ -157.280273, 68.152143 ], [ -157.280273, 66.425537 ], [ -168.969727, 66.425537 ], [ -168.969727, 68.268370 ], [ -168.750000, 68.266336 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 38.741231 ], [ -146.250000, 38.550313 ], [ -157.500000, 36.798289 ], [ -157.719727, 36.763092 ], [ -157.719727, 41.145570 ], [ -146.030273, 41.145570 ], [ -146.030273, 38.741231 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.281250, 46.560749 ], [ -148.889465, 48.922499 ], [ -148.614807, 49.066668 ], [ -146.030273, 49.066668 ], [ -146.030273, 40.813809 ], [ -157.719727, 40.813809 ], [ -157.719727, 45.346354 ], [ -157.500000, 45.408092 ], [ -153.281250, 46.560749 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.250000, 50.291094 ], [ -146.030273, 50.403266 ], [ -146.030273, 48.777913 ], [ -149.164124, 48.777913 ], [ -148.889465, 48.922499 ], [ -146.250000, 50.291094 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -148.007812, 61.100789 ], [ -149.869995, 61.606396 ], [ -150.257263, 61.710706 ], [ -146.030273, 61.710706 ], [ -146.030273, 59.300954 ], [ -146.250000, 59.506455 ], [ -148.007812, 61.100789 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 63.597448 ], [ -157.719727, 63.652355 ], [ -157.719727, 66.600676 ], [ -147.296448, 66.600676 ], [ -146.813049, 66.513260 ], [ -146.250000, 66.411253 ], [ -146.030273, 66.371654 ], [ -146.030273, 61.501734 ], [ -149.482727, 61.501734 ], [ -149.869995, 61.606396 ], [ -157.500000, 63.597448 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.154187 ], [ -156.093750, 68.138852 ], [ -146.813049, 66.513260 ], [ -146.329651, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 68.156231 ], [ -157.500000, 68.154187 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.407288, 40.979898 ], [ -146.250000, 38.550313 ], [ -146.469727, 38.518086 ], [ -146.469727, 41.145570 ], [ -143.209534, 41.145570 ], [ -143.407288, 40.979898 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 47.816843 ], [ -135.000000, 47.652438 ], [ -143.407288, 40.979898 ], [ -143.605042, 40.813809 ], [ -146.469727, 40.813809 ], [ -146.469727, 49.066668 ], [ -134.780273, 49.066668 ], [ -134.780273, 47.816843 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.492188, 51.179343 ], [ -143.962097, 55.776573 ], [ -143.945618, 55.899956 ], [ -134.780273, 55.899956 ], [ -134.780273, 48.777913 ], [ -146.469727, 48.777913 ], [ -146.469727, 50.178657 ], [ -146.250000, 50.291094 ], [ -144.492188, 51.179343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.789062, 57.137730 ], [ -146.250000, 59.506455 ], [ -146.469727, 59.709327 ], [ -146.469727, 61.710706 ], [ -134.780273, 61.710706 ], [ -134.780273, 55.652798 ], [ -143.975830, 55.652798 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.137730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.250000, 66.411253 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.780273, 62.484415 ], [ -134.780273, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.451887 ], [ -146.250000, 66.411253 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.329651, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 66.451887 ], [ -146.329651, 66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.538818, 48.922499 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.219727, 47.485657 ], [ -135.219727, 49.066668 ], [ -133.503113, 49.066668 ], [ -133.538818, 48.922499 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.981506, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.538818, 48.922499 ], [ -133.574524, 48.777913 ], [ -135.219727, 48.777913 ], [ -135.219727, 55.899956 ], [ -132.028198, 55.899956 ], [ -131.981506, 55.776573 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.288635, 61.606396 ], [ -131.981506, 55.776573 ], [ -131.937561, 55.652798 ], [ -135.219727, 55.652798 ], [ -135.219727, 61.710706 ], [ -134.335327, 61.710706 ], [ -134.288635, 61.606396 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.288635, 61.606396 ], [ -134.244690, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 62.657748 ], [ -135.000000, 62.570575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -2.109375, 45.583290 ], [ 0.000000, 46.316584 ], [ 0.219727, 46.392411 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.219727, 46.240652 ], [ 0.000000, 46.316584 ], [ 7.734375, 48.922499 ], [ 8.173828, 49.066668 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.294922, 48.777913 ], [ 7.734375, 48.922499 ], [ 11.250000, 50.064192 ], [ 11.469727, 50.134664 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "zoom": "3-5" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.030273, 49.993615 ], [ 11.250000, 50.064192 ], [ 16.171875, 51.618017 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 53.321030 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.979190 ], [ 157.445068, 55.776573 ], [ 157.546692, 55.899956 ], [ 157.719727, 55.899956 ], [ 157.719727, 53.321030 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.445068, 55.776573 ], [ 157.719727, 56.107278 ], [ 157.719727, 55.652798 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 41.248903 ], [ 161.718750, 45.336702 ], [ 160.002136, 48.922499 ], [ 159.930725, 49.066668 ], [ 168.969727, 49.066668 ], [ 168.969727, 41.248903 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 48.777913 ], [ 160.073547, 48.777913 ], [ 160.002136, 48.922499 ], [ 157.500000, 53.722717 ], [ 157.280273, 54.120602 ], [ 157.280273, 55.575239 ], [ 157.546692, 55.899956 ], [ 168.969727, 55.899956 ], [ 168.969727, 48.777913 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.500000, 55.842940 ], [ 162.660828, 61.606396 ], [ 162.762451, 61.710706 ], [ 168.969727, 61.710706 ], [ 168.969727, 55.652798 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 61.501734 ], [ 162.559204, 61.501734 ], [ 162.660828, 61.606396 ], [ 163.476562, 62.431074 ], [ 168.750000, 64.207572 ], [ 168.969727, 64.279184 ], [ 168.969727, 61.501734 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 36.489765 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 169.142761, 41.145570 ], [ 180.219727, 41.145570 ], [ 180.219727, 36.489765 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 47.279229 ], [ 180.219727, 45.135555 ], [ 180.219727, 40.813809 ], [ 169.708557, 40.813809 ], [ 169.425659, 40.979898 ], [ 168.750000, 41.376809 ], [ 168.530273, 41.504464 ], [ 168.530273, 49.066668 ], [ 173.435669, 49.066668 ], [ 173.485107, 48.922499 ], [ 174.023438, 47.279229 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.562500, 54.369359 ], [ 173.485107, 48.922499 ], [ 173.531799, 48.777913 ], [ 168.530273, 48.777913 ], [ 168.530273, 55.899956 ], [ 172.375488, 55.899956 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.369359 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 58.815164 ], [ 172.306824, 55.776573 ], [ 172.240906, 55.652798 ], [ 168.530273, 55.652798 ], [ 168.530273, 61.710706 ], [ 180.131836, 61.710706 ], [ 179.901123, 61.606396 ], [ 174.023438, 58.815164 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.901123, 61.606396 ], [ 179.670410, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 64.135775 ], [ 170.507812, 64.775296 ], [ 175.190735, 66.513260 ], [ 175.435181, 66.600676 ], [ 180.219727, 66.600676 ], [ 180.219727, 61.751031 ], [ 180.000000, 61.650771 ], [ 179.901123, 61.606396 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 66.425537 ], [ 174.946289, 66.425537 ], [ 175.190735, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.515922 ], [ 180.219727, 67.531672 ], [ 180.219727, 66.425537 ] ] ] } } ] } ] } diff --git a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json index c201b50..1a9c842 100644 --- a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json +++ b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } @@ -21,13 +21,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.296472 ] } } , { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.284180, 53.357109 ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.916992, -9.405710 ] } } @@ -43,7 +43,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.714732 ] } } @@ -55,25 +55,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.231934, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.197754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.549316, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } @@ -85,7 +85,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.771973, -13.966054 ] } } @@ -93,7 +93,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.546387, 55.689972 ] } } @@ -111,13 +111,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.296276 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.309426 ] } } @@ -125,13 +125,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } @@ -139,13 +139,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } @@ -153,7 +153,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.354736, 25.085599 ] } } @@ -167,19 +167,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.917923 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.923554 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.656982, 26.125850 ] } } @@ -191,13 +191,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.153742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.340574 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.563293 ] } } @@ -209,7 +209,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.561315 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.906849 ] } } @@ -227,7 +227,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.119385, 49.617828 ] } } @@ -245,13 +245,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.609278 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.187267 ] } } , { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.372602 ] } } @@ -265,19 +265,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.820068, -6.162401 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.479035 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.968283 ] } } @@ -289,19 +289,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.907959, 47.923705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.294317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.183838, -9.459899 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } @@ -309,7 +309,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } @@ -317,31 +317,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.278557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.990845, 39.745210 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.344849, 29.826348 ] } } @@ -349,13 +349,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -363,7 +363,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } , { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.715372 ] } } @@ -377,7 +377,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -387,7 +387,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } @@ -395,7 +395,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } , { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.631470, -23.553917 ] } } @@ -403,13 +403,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.264282, -19.036156 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } @@ -423,19 +423,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } , { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.594849, 13.459080 ] } } @@ -449,7 +449,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.605470 ] } } @@ -459,25 +459,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.151347 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.078247, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.729126, 0.335081 ] } } , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.253290 ] } } @@ -487,7 +487,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.555848 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -503,7 +503,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } @@ -511,7 +511,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.352119 ] } } @@ -539,7 +539,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.557373, 55.680682 ] } } @@ -547,7 +547,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.642024 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.118574 ] } } @@ -559,7 +559,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.370856 ] } } @@ -573,7 +573,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } @@ -585,7 +585,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.930801 ] } } @@ -599,7 +599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.436516 ] } } @@ -611,7 +611,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.098511, 56.950966 ] } } @@ -619,7 +619,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } , { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.496948, -20.164255 ] } } @@ -627,13 +627,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.400948 ] } } , { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.971802, 29.372602 ] } } @@ -647,13 +647,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.785767, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } @@ -663,7 +663,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.768921, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.706063 ] } } @@ -675,7 +675,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -683,13 +683,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.167862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.113892, 19.771873 ] } } , { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } @@ -701,7 +701,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.675715 ] } } @@ -709,19 +709,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.975952, 14.610163 ] } } @@ -731,7 +731,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.935013 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.222197 ] } } @@ -741,7 +741,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.970093, -37.814124 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -749,19 +749,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.189331, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.755153 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.688533 ] } } @@ -769,19 +769,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.944458, -9.432806 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } @@ -789,7 +789,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.920974 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } @@ -797,7 +797,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.741028, -13.840747 ] } } @@ -805,7 +805,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.993473 ] } } @@ -813,19 +813,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.276765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.988098, 39.743098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.530090, 14.623451 ] } } @@ -833,7 +833,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.673711 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.823966 ] } } @@ -841,7 +841,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.939093 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.971897 ] } } @@ -849,7 +849,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.253613 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -861,7 +861,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.135309 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -869,13 +869,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422913, 43.703622 ] } } @@ -883,7 +883,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.447485 ] } } @@ -891,7 +891,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -899,13 +899,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.601065 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } @@ -913,7 +913,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.769714, 17.978733 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.339478, 18.544721 ] } } @@ -923,13 +923,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.351990, 25.085599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } , { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.984680, 40.753499 ] } } @@ -937,13 +937,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.704041, 45.419660 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.599302 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } @@ -951,19 +951,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.261536, -19.038752 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.920471, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.652510 ] } } @@ -973,7 +973,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.119793 ] } } @@ -991,43 +991,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.628723, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.919617, -15.779039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.837349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.228455, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.518982, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.535749 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } @@ -1035,7 +1035,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.476501, 14.719104 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.976868, 18.088423 ] } } @@ -1047,19 +1047,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.802307, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.820080 ] } } @@ -1071,7 +1071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.003540, 12.653738 ] } } , { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.374880 ] } } @@ -1079,13 +1079,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.654236, 26.120918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.148865, 38.726233 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.603182 ] } } @@ -1097,7 +1097,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } @@ -1105,7 +1105,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.553114 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -1127,13 +1127,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.112122, 13.520508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.045959, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -1141,7 +1141,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.870135 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } @@ -1157,7 +1157,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.081194 ] } } @@ -1173,25 +1173,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.080994, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } , { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.312195, -4.327240 ] } } @@ -1201,7 +1201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } @@ -1209,13 +1209,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.045776, 12.117208 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.900175 ] } } @@ -1223,7 +1223,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.056079 ] } } @@ -1255,7 +1255,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.397827, 52.524577 ] } } @@ -1267,7 +1267,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } @@ -1275,7 +1275,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.644521 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.167764 ] } } @@ -1295,7 +1295,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.413967 ] } } , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.814071 ] } } @@ -1305,7 +1305,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.055847, -1.949697 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.358215, -3.373598 ] } } @@ -1313,7 +1313,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.577454, 4.830997 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.321348 ] } } @@ -1321,19 +1321,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.006653, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.985340 ] } } @@ -1345,7 +1345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.686473 ] } } , { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.095276, 44.435741 ] } } @@ -1357,7 +1357,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.315247, 54.684947 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.561951, 53.902720 ] } } @@ -1367,7 +1367,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.930725, 60.178404 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727478, 59.433903 ] } } @@ -1377,7 +1377,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.239441, -11.703341 ] } } @@ -1385,7 +1385,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.812439, -1.279801 ] } } , { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.181516 ] } } @@ -1395,7 +1395,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.696594, 9.037003 ] } } , { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.063416, 9.560126 ] } } @@ -1403,7 +1403,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.358356 ] } } @@ -1413,7 +1413,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } @@ -1423,7 +1423,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.505066, 33.874976 ] } } @@ -1441,43 +1441,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.513123, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.974548, 29.372602 ] } } , { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.644521 ] } } @@ -1493,7 +1493,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.858704, 40.398856 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -1501,37 +1501,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.164255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.168376 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.853088, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -1539,13 +1539,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.198181, 28.601403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.771667, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -1555,7 +1555,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -1563,13 +1563,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.934606 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.901887 ] } } @@ -1577,7 +1577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.720005 ] } } , { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } @@ -1587,13 +1587,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.808765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.786135 ] } } @@ -1603,19 +1603,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.170593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.170683 ] } } , { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.915611 ] } } @@ -1625,7 +1625,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.598572, 17.968283 ] } } , { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035801 ] } } @@ -1635,25 +1635,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.673353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.930725, 4.885731 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.978699, 14.607505 ] } } @@ -1661,7 +1661,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.219848 ] } } @@ -1671,25 +1671,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.932907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.023451 ] } } , { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.568528 ] } } @@ -1697,13 +1697,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.816293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.752896 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.032245 ] } } @@ -1713,7 +1713,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -1721,55 +1721,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.462608 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.947205, -9.435515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.918247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.846659 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.378479, 7.103618 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.015442, 1.340210 ] } } diff --git a/tests/geometry/out/-z3.json b/tests/geometry/out/-z3.json index 354066c..60c1c72 100644 --- a/tests/geometry/out/-z3.json +++ b/tests/geometry/out/-z3.json @@ -11,109 +11,109 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 2.460938, 46.134170 ], [ 43.242188, 59.933000 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 26.718750, 18.062312 ], [ 22.148438, -23.563987 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.986328, 0.000000 ], [ 101.953125, 1.054628 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -79.453125, 49.382373 ], [ 11.601562, 52.052490 ], [ -60.468750, -7.013668 ], [ 23.906250, -12.554564 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -60.468750, -7.013668 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 2.460938, 46.103709 ], [ 3.515625, 46.498392 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 0.000000, 28.420391 ], [ 3.515625, 27.098254 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 49.382373 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 25.092773, 3.513421 ], [ 24.741211, 0.000000 ], [ 22.148438, -23.563987 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.986328, 0.000000 ], [ 101.997070, 1.010690 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 23.906250, -12.554564 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 2.460938, 46.103709 ], [ 43.242188, 59.910976 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 0.000000, 28.420391 ], [ 26.718750, 18.020528 ], [ 24.741211, 0.000000 ], [ 24.345703, -3.513421 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.986328, 0.000000 ], [ 101.997070, 1.010690 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 11.601562, 52.052490 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -60.468750, -7.013668 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 0.000000, 28.401065 ], [ 1.757812, 27.741885 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 49.382373 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 24.916992, 1.757537 ], [ 24.741211, 0.000000 ], [ 22.148438, -23.563987 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 23.906250, -12.554564 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 2.460938, 46.088472 ], [ 43.242188, 59.910976 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 0.000000, 28.401065 ], [ 26.718750, 17.999632 ], [ 24.741211, 0.000000 ], [ 24.543457, -1.757537 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 11.601562, 52.052490 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.986328, 0.000000 ], [ 101.997070, 1.010690 ] ] } } , { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "Point", "coordinates": [ 99.997559, 0.000000 ] } } @@ -121,7 +121,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.986328, 0.000000 ], [ 101.997070, 1.010690 ] ] } } , { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "Point", "coordinates": [ 99.997559, 0.000000 ] } } @@ -129,51 +129,51 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -60.468750, -7.013668 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 49.382373 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -1.406250, 28.921631 ], [ 0.000000, 28.401065 ], [ 0.878906, 28.071980 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 24.829102, 0.878872 ], [ 24.730225, 0.000000 ], [ 22.148438, -23.563987 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 23.906250, -12.554564 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -0.878906, 28.729130 ], [ 0.000000, 28.401065 ], [ 26.718750, 17.989183 ], [ 24.741211, 0.000000 ], [ 24.642334, -0.878872 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "bare" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "bare", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 2.460938, 46.080852 ], [ 43.242188, 59.905468 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "multipoint" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "multipoint", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "point": "multi" }, "geometry": { "type": "Point", "coordinates": [ 11.601562, 52.052490 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.997314, 0.000000 ], [ 101.865234, 0.878872 ] ] } } , { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "Point", "coordinates": [ 99.997559, 0.000000 ] } } @@ -181,7 +181,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "geometrycollection", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "LineString", "coordinates": [ [ 100.997314, 0.000000 ], [ 101.997070, 1.010690 ] ] } } , { "type": "Feature", "properties": { "collection": true }, "geometry": { "type": "Point", "coordinates": [ 99.997559, 0.000000 ] } } diff --git a/tests/highzoom/out/-z30.json b/tests/highzoom/out/-z30.json index 1790e81..67505ac 100644 --- a/tests/highzoom/out/-z30.json +++ b/tests/highzoom/out/-z30.json @@ -11,361 +11,361 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.020098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.020098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.002553 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.002553 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.501904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.501904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.002553 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.501904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.501904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000427, 37.000359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000427, 37.000359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000427, 37.000359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000084, 37.000085 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 85 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 85 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 199 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000084, 37.000085 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 170 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500087 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 170 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500087 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 398 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000084, 37.000016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 340 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 340 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 797 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000041, 37.000016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 681 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 681 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 659, "y": 1594 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000020, 37.000016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2047, "y": 1362 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2048, "y": 1362 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1319, "y": 3188 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000009, 37.000008 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4095, "y": 2724 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4096, "y": 2724 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2639, "y": 6377 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000003, 37.000004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8191, "y": 5448 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8192, "y": 5448 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 5279, "y": 12754 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000001, 37.000001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 16383, "y": 10897 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 16384, "y": 10897 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 16, "x": 10558, "y": 25508 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000001, 37.000000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 16, "x": 32767, "y": 21794 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 16, "x": 32768, "y": 21794 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 17, "x": 21117, "y": 51017 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 17, "x": 65535, "y": 43589 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 17, "x": 65536, "y": 43589 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 18, "x": 42234, "y": 102034 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 18, "x": 131071, "y": 87178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 18, "x": 131072, "y": 87178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 19, "x": 84468, "y": 204068 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 19, "x": 262143, "y": 174356 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 19, "x": 262144, "y": 174356 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 168937, "y": 408137 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Santa Cruz" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 524287, "y": 348712 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 524288, "y": 348712 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "London" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 51.500000 ] } } ] } ] } diff --git a/tests/join-population/joined-i.mbtiles.json b/tests/join-population/joined-i.mbtiles.json index cd031d6..f1d0414 100644 --- a/tests/join-population/joined-i.mbtiles.json +++ b/tests/join-population/joined-i.mbtiles.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ] ] ] } } @@ -23,7 +23,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ] ] ] } } @@ -49,7 +49,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ] ] ] } } @@ -145,7 +145,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ] ] ] } } @@ -423,7 +423,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ] ] ] } } @@ -739,7 +739,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ] ] ] } } @@ -1063,7 +1063,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ] ] ] } } @@ -1391,7 +1391,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ] ] ] } } @@ -1719,7 +1719,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ] ] ] } } diff --git a/tests/join-population/joined.mbtiles.json b/tests/join-population/joined.mbtiles.json index 48aabfa..9ca8450 100644 --- a/tests/join-population/joined.mbtiles.json +++ b/tests/join-population/joined.mbtiles.json @@ -11,13 +11,13 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ] ] ] } } @@ -33,7 +33,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ] ] ] } } @@ -75,7 +75,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.897614 ] ] ], [ [ [ -122.310791, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ] ] ], [ [ [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ] ] ] ] } } @@ -201,7 +201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.887860 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.312164, 37.897072 ], [ -122.309418, 37.893279 ] ] ] ] } } @@ -539,7 +539,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ] ] ] } } @@ -551,7 +551,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.891383 ], [ -122.309074, 37.888944 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ] ] ] ] } } @@ -963,7 +963,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ] ] ] } } @@ -971,7 +971,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ] ] ] ] } } @@ -1455,7 +1455,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309074, 37.891518 ], [ -122.308903, 37.890502 ] ] ], [ [ [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892399 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ] ] ] ] } } @@ -1979,7 +1979,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ] ] ] } } @@ -2503,7 +2503,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ] ] ] } } diff --git a/tests/multilayer/out/-ltogether_-z3.json b/tests/multilayer/out/-ltogether_-z3.json index 6878c7b..0c1078e 100644 --- a/tests/multilayer/out/-ltogether_-z3.json +++ b/tests/multilayer/out/-ltogether_-z3.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.316584 ], [ -123.486328, 46.316584 ], [ -122.958984, 46.134170 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.644768 ], [ -121.640625, 45.767523 ], [ -121.113281, 45.644768 ], [ -120.673828, 45.767523 ], [ -120.234375, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.982422, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.058594, 42.032974 ], [ -124.277344, 42.032974 ] ] } } @@ -237,7 +237,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.486328, 46.286224 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.596680, 45.736860 ], [ -121.069336, 45.644768 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -465,7 +465,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.486328, 46.286224 ], [ -123.244629, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.761230, 45.951150 ], [ -122.673340, 45.644768 ], [ -122.431641, 45.598666 ], [ -122.189941, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.574707, 45.736860 ], [ -121.223145, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.168457, 45.752193 ], [ -119.794922, 45.859412 ], [ -119.597168, 45.935871 ], [ -119.355469, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -599,7 +599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.296387, 43.945372 ], [ -91.647949, 44.087585 ], [ -91.757812, 44.182204 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.757812, 43.516689 ] ] } } @@ -741,7 +741,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -111.060791, 41.640078 ], [ -111.060791, 41.029643 ], [ -109.061279, 41.004775 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.051514, 41.004775 ], [ -109.061279, 41.004775 ] ] } } @@ -831,7 +831,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.782959, 46.286224 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.947998, 46.134170 ], [ -122.761230, 45.943511 ], [ -122.728271, 45.775186 ], [ -122.662354, 45.637087 ], [ -122.420654, 45.598666 ], [ -122.178955, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.563721, 45.736860 ], [ -121.212158, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.838623, 45.675482 ], [ -120.618896, 45.759859 ], [ -120.168457, 45.744527 ], [ -119.794922, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.344482, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.004593 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.003662, 42.000325 ], [ -124.222412, 42.000325 ] ] } } @@ -905,7 +905,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.384521, 41.640078 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 39.342794 ], [ -90.758057, 39.266284 ], [ -90.670166, 39.078908 ], [ -90.659180, 38.908133 ], [ -90.538330, 38.873929 ], [ -90.351562, 38.933776 ], [ -90.164795, 38.771216 ], [ -90.219727, 38.591114 ], [ -90.307617, 38.444985 ], [ -90.373535, 38.264063 ], [ -90.230713, 38.117272 ], [ -90.032959, 37.978845 ], [ -90.000000, 37.978845 ], [ -89.923096, 37.970185 ], [ -89.659424, 37.753344 ], [ -89.560547, 37.727280 ], [ -89.483643, 37.483577 ], [ -89.516602, 37.335224 ], [ -89.395752, 37.081476 ], [ -89.285889, 37.107765 ], [ -89.110107, 36.958671 ] ] } } @@ -1015,7 +1015,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "together" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "together", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 42.706660 ], [ -90.747070, 42.666281 ], [ -90.648193, 42.512602 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.648193, 42.512602 ], [ -90.593262, 42.431566 ], [ -90.472412, 42.382894 ], [ -90.417480, 42.277309 ], [ -90.263672, 42.195969 ], [ -90.164795, 42.106374 ], [ -90.219727, 41.836828 ], [ -90.395508, 41.615442 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } diff --git a/tests/multilayer/out/-nseparate_-z3.json b/tests/multilayer/out/-nseparate_-z3.json index 118f72b..df12960 100644 --- a/tests/multilayer/out/-nseparate_-z3.json +++ b/tests/multilayer/out/-nseparate_-z3.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.316584 ], [ -123.486328, 46.316584 ], [ -122.958984, 46.134170 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.644768 ], [ -121.640625, 45.767523 ], [ -121.113281, 45.644768 ], [ -120.673828, 45.767523 ], [ -120.234375, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.982422, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.058594, 42.032974 ], [ -124.277344, 42.032974 ] ] } } @@ -233,13 +233,13 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.761719, 37.996163 ], [ -75.410156, 38.065392 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.74, "LONGITUDE": -122.46, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.517, "MAX_BBXMIN": -122.517, "MIN_BBXMAX": -122.358, "MAX_BBXMAX": -121.733, "MIN_BBYMIN": 37.1917, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.8167, "MAX_BBYMAX": 38.0417, "MEAN_BBXC": -122.301, "MEAN_BBYC": 37.6223, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.486328, 46.286224 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.596680, 45.736860 ], [ -121.069336, 45.644768 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -461,7 +461,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.717773, 37.961523 ], [ -75.629883, 38.030786 ], [ -75.410156, 38.030786 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.74, "LONGITUDE": -122.46, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.517, "MAX_BBXMIN": -122.517, "MIN_BBXMAX": -122.358, "MAX_BBXMAX": -121.733, "MIN_BBYMIN": 37.1917, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.8167, "MAX_BBYMAX": 38.0417, "MEAN_BBXC": -122.301, "MEAN_BBYC": 37.6223, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.7876, "LONGITUDE": -80.2241, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.4667, "MAX_BBXMIN": -80.4417, "MIN_BBXMAX": -80.1757, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.0141, "MAX_BBYMAX": 26.9917, "MEAN_BBXC": -80.2364, "MEAN_BBYC": 26.0672, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } @@ -469,7 +469,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.486328, 46.286224 ], [ -123.244629, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.761230, 45.951150 ], [ -122.673340, 45.644768 ], [ -122.431641, 45.598666 ], [ -122.189941, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.574707, 45.736860 ], [ -121.223145, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.168457, 45.752193 ], [ -119.794922, 45.859412 ], [ -119.597168, 45.935871 ], [ -119.355469, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.012224 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -597,7 +597,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -88.242188, 36.509636 ], [ -89.516602, 36.509636 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.74, "LONGITUDE": -122.46, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.517, "MAX_BBXMIN": -122.517, "MIN_BBXMAX": -122.358, "MAX_BBXMAX": -121.733, "MIN_BBYMIN": 37.1917, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.8167, "MAX_BBYMAX": 38.0417, "MEAN_BBXC": -122.301, "MEAN_BBYC": 37.6223, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.7392, "LONGITUDE": -104.984, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.242, "MAX_BBXMIN": -105.242, "MIN_BBXMAX": -104.867, "MAX_BBXMAX": -104.708, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.9583, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.994, "MEAN_BBYC": 39.7298, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -105.007324, 39.757880 ] } } @@ -605,7 +605,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.296387, 43.945372 ], [ -91.647949, 44.087585 ], [ -91.757812, 44.182204 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.757812, 43.516689 ] ] } } @@ -739,7 +739,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.695801, 37.944198 ], [ -75.629883, 38.013476 ], [ -75.388184, 38.030786 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.83, "LONGITUDE": -87.7501, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.4083, "MAX_BBXMIN": -88.0363, "MIN_BBXMAX": -87.5281, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.3917, "MAX_BBYMIN": 41.4583, "MIN_BBYMAX": 42.001, "MAX_BBYMAX": 42.4917, "MEAN_BBXC": -87.8587, "MEAN_BBYC": 41.8327, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.7876, "LONGITUDE": -80.2241, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.4667, "MAX_BBXMIN": -80.4417, "MIN_BBXMAX": -80.1757, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.0141, "MAX_BBYMAX": 26.9917, "MEAN_BBXC": -80.2364, "MEAN_BBYC": 26.0672, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } @@ -749,7 +749,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -111.060791, 41.640078 ], [ -111.060791, 41.029643 ], [ -109.061279, 41.004775 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.051514, 41.004775 ], [ -109.061279, 41.004775 ] ] } } @@ -829,7 +829,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.121094, 36.509636 ], [ -89.505615, 36.509636 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.74, "LONGITUDE": -122.46, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.517, "MAX_BBXMIN": -122.517, "MIN_BBXMAX": -122.358, "MAX_BBXMAX": -121.733, "MIN_BBYMIN": 37.1917, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.8167, "MAX_BBYMAX": 38.0417, "MEAN_BBXC": -122.301, "MEAN_BBYC": 37.6223, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.99, "LONGITUDE": -118.18, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.992, "MAX_BBXMIN": -118.967, "MIN_BBXMAX": -117.857, "MAX_BBXMAX": -117.008, "MIN_BBYMIN": 33.3917, "MAX_BBYMIN": 33.8626, "MIN_BBYMAX": 34.2417, "MAX_BBYMAX": 34.3333, "MEAN_BBXC": -118.107, "MEAN_BBYC": 33.9806, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } @@ -841,7 +841,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.782959, 46.286224 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.947998, 46.134170 ], [ -122.761230, 45.943511 ], [ -122.728271, 45.775186 ], [ -122.662354, 45.637087 ], [ -122.420654, 45.598666 ], [ -122.178955, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.563721, 45.736860 ], [ -121.212158, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.838623, 45.675482 ], [ -120.618896, 45.759859 ], [ -120.168457, 45.744527 ], [ -119.794922, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.344482, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.004593 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.003662, 42.000325 ], [ -124.222412, 42.000325 ] ] } } @@ -915,7 +915,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.384521, 41.640078 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 39.342794 ], [ -90.758057, 39.266284 ], [ -90.670166, 39.078908 ], [ -90.659180, 38.908133 ], [ -90.538330, 38.873929 ], [ -90.351562, 38.933776 ], [ -90.164795, 38.771216 ], [ -90.219727, 38.591114 ], [ -90.307617, 38.444985 ], [ -90.373535, 38.264063 ], [ -90.230713, 38.117272 ], [ -90.032959, 37.978845 ], [ -90.000000, 37.978845 ], [ -89.923096, 37.970185 ], [ -89.659424, 37.753344 ], [ -89.560547, 37.727280 ], [ -89.483643, 37.483577 ], [ -89.516602, 37.335224 ], [ -89.395752, 37.081476 ], [ -89.285889, 37.107765 ], [ -89.110107, 36.958671 ] ] } } @@ -1015,7 +1015,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.695801, 37.935533 ], [ -75.618896, 38.004820 ], [ -75.388184, 38.022131 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.83, "LONGITUDE": -84.3999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.6083, "MIN_BBXMAX": -83.88, "MAX_BBXMAX": -83.8583, "MIN_BBYMIN": 33.3833, "MAX_BBYMIN": 33.3833, "MIN_BBYMAX": 34.2027, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.3287, "MEAN_BBYC": 33.8516, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.407959, 33.833920 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.7876, "LONGITUDE": -80.2241, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.4667, "MAX_BBXMIN": -80.4417, "MIN_BBXMAX": -80.1757, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.0141, "MAX_BBYMAX": 26.9917, "MEAN_BBXC": -80.2364, "MEAN_BBYC": 26.0672, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.233154, 25.790000 ] } } @@ -1027,7 +1027,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "lines" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "lines", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 42.706660 ], [ -90.747070, 42.666281 ], [ -90.648193, 42.512602 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.648193, 42.512602 ], [ -90.593262, 42.431566 ], [ -90.472412, 42.382894 ], [ -90.417480, 42.277309 ], [ -90.263672, 42.195969 ], [ -90.164795, 42.106374 ], [ -90.219727, 41.836828 ], [ -90.395508, 41.615442 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } @@ -1079,7 +1079,7 @@ { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.685059, 41.360319 ], [ -74.805908, 41.319076 ], [ -74.981689, 41.095912 ], [ -75.146484, 41.004775 ], [ -75.146484, 40.979898 ], [ -75.091553, 40.871988 ], [ -75.201416, 40.755580 ], [ -75.212402, 40.588928 ], [ -75.102539, 40.555548 ], [ -75.080566, 40.455307 ], [ -74.915771, 40.313043 ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "places" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.83, "LONGITUDE": -87.7501, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.4083, "MAX_BBXMIN": -88.0363, "MIN_BBXMAX": -87.5281, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.3917, "MAX_BBYMIN": 41.4583, "MIN_BBYMAX": 42.001, "MAX_BBYMAX": 42.4917, "MEAN_BBXC": -87.8587, "MEAN_BBYC": 41.8327, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.75, "LONGITUDE": -73.98, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.0914, "MIN_BBXMAX": -73.5749, "MAX_BBXMAX": -72.7167, "MIN_BBYMIN": 39.8083, "MAX_BBYMIN": 40.5667, "MIN_BBYMAX": 41.0572, "MAX_BBYMAX": 41.9417, "MEAN_BBXC": -73.8158, "MEAN_BBYC": 40.813, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.992920, 40.755580 ] } } diff --git a/tests/muni/out/-Z11_-z11.json b/tests/muni/out/-Z11_-z11.json index 1e99a8c..ded0e1b 100644 --- a/tests/muni/out/-Z11_-z11.json +++ b/tests/muni/out/-Z11_-z11.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -43,7 +43,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } @@ -1103,7 +1103,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } @@ -9715,7 +9715,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } diff --git a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json index 64992da..ba62f9d 100644 --- a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json +++ b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -43,7 +43,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } @@ -1103,7 +1103,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } @@ -9715,7 +9715,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } diff --git a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json index ce10582..18c1489 100644 --- a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json +++ b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -43,7 +43,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } @@ -1103,7 +1103,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } @@ -9715,7 +9715,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } diff --git a/tests/muni/out/-Z11_-z11_-g2.json b/tests/muni/out/-Z11_-z11_-g2.json index c94a009..04ffbe1 100644 --- a/tests/muni/out/-Z11_-z11_-g2.json +++ b/tests/muni/out/-Z11_-z11_-g2.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -41,7 +41,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } @@ -725,7 +725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } @@ -6379,7 +6379,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } ] } ] } diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index 1bcda76..a56b004 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } @@ -455,7 +455,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } @@ -3901,7 +3901,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } @@ -3915,7 +3915,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -3947,7 +3947,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -4427,7 +4427,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } @@ -8219,7 +8219,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } @@ -8719,7 +8719,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } @@ -9151,7 +9151,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.786165 ] } } @@ -12445,7 +12445,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } , { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } @@ -13855,7 +13855,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } @@ -13883,13 +13883,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -13919,7 +13919,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -13997,7 +13997,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753539 ] } } @@ -14573,7 +14573,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } @@ -15275,7 +15275,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -15311,7 +15311,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } @@ -15347,7 +15347,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } @@ -15715,7 +15715,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } @@ -17077,7 +17077,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } @@ -18421,7 +18421,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -18851,7 +18851,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } @@ -19253,7 +19253,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.751512 ] } } @@ -20571,7 +20571,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } @@ -22287,7 +22287,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } @@ -23563,7 +23563,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } @@ -23581,7 +23581,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } @@ -23835,7 +23835,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } @@ -23891,7 +23891,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } @@ -23951,7 +23951,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } @@ -23999,7 +23999,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index 3e88642..2b3b826 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } @@ -29,7 +29,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } @@ -535,7 +535,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } @@ -4627,7 +4627,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } @@ -4643,7 +4643,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -4667,7 +4667,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -5001,7 +5001,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } @@ -7617,7 +7617,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } @@ -7963,7 +7963,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } @@ -8263,7 +8263,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.786165 ] } } @@ -10535,7 +10535,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } , { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } @@ -11509,7 +11509,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } @@ -11531,13 +11531,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -11567,7 +11567,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -11645,7 +11645,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753539 ] } } @@ -12221,7 +12221,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } @@ -12923,7 +12923,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -12959,7 +12959,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } @@ -12995,7 +12995,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } @@ -13363,7 +13363,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } @@ -14725,7 +14725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } @@ -16069,7 +16069,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -16499,7 +16499,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } @@ -16901,7 +16901,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.751512 ] } } @@ -18219,7 +18219,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } @@ -19935,7 +19935,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } @@ -21211,7 +21211,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } @@ -21229,7 +21229,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } @@ -21483,7 +21483,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } @@ -21539,7 +21539,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } @@ -21599,7 +21599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } @@ -21647,7 +21647,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index 68c1cec..539e8d8 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } @@ -29,7 +29,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } @@ -535,7 +535,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } @@ -4627,7 +4627,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } @@ -4643,7 +4643,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -4675,7 +4675,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -5155,7 +5155,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } @@ -8947,7 +8947,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } @@ -9447,7 +9447,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } @@ -9879,7 +9879,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.786165 ] } } @@ -13173,7 +13173,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } , { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } @@ -14583,7 +14583,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } @@ -14611,13 +14611,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -14647,7 +14647,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -14725,7 +14725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753539 ] } } @@ -15301,7 +15301,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } @@ -16003,7 +16003,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -16039,7 +16039,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } @@ -16075,7 +16075,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } @@ -16443,7 +16443,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } @@ -17805,7 +17805,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } @@ -19149,7 +19149,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -19579,7 +19579,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } @@ -19981,7 +19981,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.751512 ] } } @@ -21299,7 +21299,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } @@ -23015,7 +23015,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } @@ -24291,7 +24291,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } @@ -24309,7 +24309,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } @@ -24563,7 +24563,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } @@ -24619,7 +24619,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } @@ -24679,7 +24679,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } @@ -24727,7 +24727,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index 565f778..cbe8ad3 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } @@ -601,7 +601,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } @@ -5145,13 +5145,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -5177,7 +5177,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -5533,7 +5533,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } @@ -8209,7 +8209,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } @@ -8567,7 +8567,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } @@ -8869,7 +8869,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } @@ -11175,7 +11175,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } , { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } @@ -12145,19 +12145,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } , { "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } @@ -12185,7 +12185,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } @@ -12261,7 +12261,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753539 ] } } @@ -12805,7 +12805,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } , { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509950, 37.779916 ] } } @@ -13437,7 +13437,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -13471,7 +13471,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } @@ -13507,7 +13507,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } @@ -13825,7 +13825,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } @@ -15039,7 +15039,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } @@ -16279,7 +16279,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } @@ -16681,7 +16681,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } @@ -17035,7 +17035,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.751512 ] } } @@ -18199,7 +18199,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } @@ -19741,7 +19741,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } @@ -20865,7 +20865,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } @@ -20881,7 +20881,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } @@ -21119,7 +21119,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } @@ -21159,7 +21159,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } @@ -21213,7 +21213,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } @@ -21259,7 +21259,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } ] } ] } diff --git a/tests/muni/out/-z1_-Z1_-ao_-P.json b/tests/muni/out/-z1_-Z1_-ao_-P.json index 9470287..f2c72e1 100644 --- a/tests/muni/out/-z1_-Z1_-ao_-P.json +++ b/tests/muni/out/-z1_-Z1_-ao_-P.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , { "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json index 4fd15de..5f8ef5b 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json @@ -11,15 +11,15 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "algeria" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "algeria", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.767578, 36.949892 ], [ 7.119141, 36.949892 ], [ 7.207031, 37.090240 ], [ 7.734375, 37.020098 ], [ 7.734375, 36.879621 ], [ 7.998047, 36.879621 ], [ 8.173828, 37.020098 ], [ 8.525391, 36.949892 ], [ 8.613281, 36.879621 ], [ 8.349609, 36.809285 ], [ 8.437500, 36.738884 ], [ 8.085938, 36.527295 ], [ 8.349609, 36.456636 ], [ 8.173828, 35.960223 ], [ 8.349609, 35.317366 ], [ 8.173828, 34.957995 ], [ 8.261719, 34.813803 ], [ 8.173828, 34.597042 ], [ 7.470703, 34.161818 ], [ 7.470703, 33.724340 ], [ 7.646484, 33.284620 ], [ 8.085938, 33.137551 ], [ 8.261719, 32.546813 ], [ 9.052734, 32.026706 ], [ 9.492188, 30.297018 ], [ 9.228516, 30.145127 ], [ 9.492188, 29.840644 ], [ 9.843750, 28.998532 ], [ 9.755859, 28.226970 ], [ 9.931641, 27.839076 ], [ 9.667969, 27.371767 ], [ 9.843750, 26.588527 ], [ 9.404297, 26.431228 ], [ 9.316406, 26.115986 ], [ 10.019531, 25.324167 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.766785 ], [ 10.195312, 24.607069 ], [ 11.513672, 24.367114 ], [ 11.953125, 23.563987 ], [ 7.734375, 21.125498 ], [ 5.888672, 19.559790 ], [ 3.251953, 18.979026 ], [ 3.076172, 19.145168 ], [ 3.076172, 19.311143 ], [ 3.251953, 19.394068 ], [ 3.164062, 19.890723 ], [ 2.373047, 20.055931 ], [ 2.197266, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.582031, 20.632784 ], [ 1.142578, 20.797201 ], [ 1.142578, 21.125498 ], [ 0.791016, 21.371244 ], [ -4.746094, 25.005973 ], [ -8.701172, 27.293689 ], [ -8.701172, 28.767659 ], [ -7.646484, 29.458731 ], [ -6.855469, 29.458731 ], [ -5.800781, 29.688053 ], [ -5.800781, 29.535230 ], [ -5.625000, 29.535230 ], [ -5.361328, 29.916852 ], [ -4.833984, 30.297018 ], [ -4.658203, 30.297018 ], [ -4.306641, 30.600094 ], [ -3.691406, 30.751278 ], [ -3.603516, 30.977609 ], [ -3.867188, 31.203405 ], [ -3.867188, 31.353637 ], [ -3.691406, 31.428663 ], [ -3.603516, 31.728167 ], [ -2.900391, 31.802893 ], [ -2.988281, 32.101190 ], [ -1.230469, 32.101190 ], [ -1.318359, 32.398516 ], [ -1.054688, 32.546813 ], [ -1.494141, 32.768800 ], [ -1.494141, 33.063924 ], [ -1.757812, 33.284620 ], [ -1.669922, 34.089061 ], [ -1.845703, 34.379713 ], [ -1.757812, 34.524661 ], [ -1.933594, 34.597042 ], [ -1.845703, 34.813803 ], [ -2.285156, 35.101934 ], [ -1.933594, 35.101934 ], [ -1.406250, 35.317366 ], [ -1.054688, 35.746512 ], [ -0.615234, 35.746512 ], [ -0.527344, 35.960223 ], [ -0.087891, 35.817813 ], [ 0.263672, 36.244273 ], [ 0.791016, 36.385913 ], [ 0.878906, 36.527295 ], [ 2.285156, 36.668419 ], [ 2.548828, 36.597889 ], [ 2.900391, 36.879621 ], [ 3.603516, 36.809285 ], [ 3.691406, 36.949892 ], [ 4.746094, 36.949892 ], [ 5.009766, 36.879621 ], [ 5.009766, 36.738884 ], [ 5.449219, 36.668419 ], [ 5.625000, 36.879621 ], [ 6.240234, 36.949892 ], [ 6.328125, 37.160317 ], [ 6.767578, 36.949892 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "albania" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "albania", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "sweden" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "sweden", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.236328, 65.585720 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ] ] ], [ [ [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ] ] ], [ [ [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ] ] ], [ [ [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ] ] ], [ [ [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ] ] ], [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.632812, 59.623325 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ] ] ], [ [ [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.984375, 59.844815 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ] ] ], [ [ [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ] ] ], [ [ [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ] ] ], [ [ [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 23.027344, 65.730626 ] ] ], [ [ [ 20.302734, 63.743631 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.704722 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.544922, 62.995158 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.108670 ], [ 18.984375, 59.888937 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.632812, 59.623325 ], [ 18.544922, 59.623325 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ], [ 17.929688, 59.445075 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.950008 ], [ 17.753906, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.666016, 58.950008 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.171875, 58.676938 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.611328, 57.797944 ], [ 16.523438, 57.844751 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.447733 ], [ 11.425781, 58.355630 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.658275 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.236328, 65.585720 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.743631 ] ], [ [ 17.841797, 62.995158 ], [ 17.666016, 63.035039 ], [ 17.841797, 62.955223 ], [ 17.841797, 62.995158 ] ], [ [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ] ] ] ] } } ] } ] } diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json index bc331fa..7f5663d 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "unified" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "unified", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.236328, 65.585720 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ] ] ], [ [ [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ] ] ], [ [ [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ] ] ], [ [ [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ] ] ], [ [ [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ] ] ], [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.632812, 59.623325 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ] ] ], [ [ [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.984375, 59.844815 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ] ] ], [ [ [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ] ] ], [ [ [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ] ] ], [ [ [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 23.027344, 65.730626 ] ] ], [ [ [ 20.302734, 63.743631 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.704722 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.544922, 62.995158 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.108670 ], [ 18.984375, 59.888937 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.632812, 59.623325 ], [ 18.544922, 59.623325 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ], [ 17.929688, 59.445075 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.950008 ], [ 17.753906, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.666016, 58.950008 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.171875, 58.676938 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.611328, 57.797944 ], [ 16.523438, 57.844751 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.447733 ], [ 11.425781, 58.355630 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.658275 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.236328, 65.585720 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.743631 ] ], [ [ 17.841797, 62.995158 ], [ 17.666016, 63.035039 ], [ 17.841797, 62.955223 ], [ 17.841797, 62.995158 ] ], [ [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index abecb08..828a49a 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } @@ -371,7 +371,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ] ] ] } } @@ -407,7 +407,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } @@ -517,7 +517,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } @@ -593,7 +593,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ] ] ], [ [ [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } @@ -827,19 +827,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } @@ -859,7 +859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } @@ -869,13 +869,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ] ] ], [ [ [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ] ] ] } } @@ -905,7 +905,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } @@ -1005,7 +1005,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } @@ -1015,13 +1015,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ] ] ] } } @@ -1071,7 +1071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } @@ -1273,7 +1273,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1285,13 +1285,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ] ] ], [ [ [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ] ] ] ] } } @@ -1317,7 +1317,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ] ] ], [ [ [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ] ] ], [ [ [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ] ] ] ] } } @@ -1359,37 +1359,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } @@ -1399,7 +1399,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } @@ -1409,19 +1409,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -1437,7 +1437,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } @@ -1445,31 +1445,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ] ] ] ] } } @@ -1481,7 +1481,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ] ] ] } } @@ -1505,7 +1505,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } @@ -1557,7 +1557,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } @@ -1567,7 +1567,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } @@ -1575,7 +1575,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } @@ -1583,25 +1583,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } @@ -1643,7 +1643,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } @@ -1661,7 +1661,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] ] } } @@ -1669,25 +1669,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ] ] ] } } @@ -1731,7 +1731,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ] ] ] } } @@ -1833,7 +1833,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } @@ -1917,7 +1917,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } @@ -1929,7 +1929,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1937,19 +1937,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } @@ -1957,13 +1957,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ] ] ] } } @@ -2025,7 +2025,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ] ] ] } } @@ -2051,37 +2051,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ] ] ] } } , { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } @@ -2093,7 +2093,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } @@ -2133,7 +2133,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } @@ -2145,31 +2145,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } @@ -2179,7 +2179,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } @@ -2199,13 +2199,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } @@ -2215,55 +2215,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } @@ -2271,7 +2271,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } @@ -2279,37 +2279,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } @@ -2317,7 +2317,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } @@ -2325,31 +2325,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -2357,7 +2357,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } @@ -2365,7 +2365,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } @@ -2373,43 +2373,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } @@ -2419,7 +2419,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } @@ -2427,7 +2427,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } @@ -2435,61 +2435,61 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } @@ -2497,7 +2497,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } @@ -2507,7 +2507,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } @@ -2523,7 +2523,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } @@ -2563,7 +2563,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } @@ -2575,7 +2575,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } @@ -2583,19 +2583,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } @@ -2603,7 +2603,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } @@ -2611,43 +2611,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } @@ -2657,7 +2657,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } @@ -2673,7 +2673,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } @@ -2685,7 +2685,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } @@ -2705,7 +2705,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } @@ -2713,7 +2713,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } @@ -2721,7 +2721,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } @@ -2729,13 +2729,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } @@ -2743,7 +2743,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } @@ -2751,37 +2751,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } @@ -2789,7 +2789,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } @@ -2797,49 +2797,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } @@ -2875,7 +2875,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } @@ -2893,7 +2893,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } @@ -2907,7 +2907,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } @@ -2915,7 +2915,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } @@ -2923,49 +2923,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } , { "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } @@ -2975,7 +2975,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } , { "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } @@ -2993,7 +2993,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } , { "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } @@ -3031,7 +3031,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } @@ -3057,7 +3057,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } @@ -3121,7 +3121,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } @@ -3137,7 +3137,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } @@ -3147,43 +3147,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } @@ -3201,7 +3201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } @@ -3237,7 +3237,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } @@ -3273,7 +3273,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } @@ -3317,7 +3317,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } @@ -3357,7 +3357,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } @@ -3375,7 +3375,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } @@ -3387,13 +3387,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } @@ -3401,49 +3401,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } , { "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } @@ -3459,7 +3459,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } @@ -3499,7 +3499,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } @@ -3517,67 +3517,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } @@ -3587,7 +3587,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } @@ -3613,7 +3613,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } @@ -3631,61 +3631,61 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } @@ -3709,7 +3709,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } @@ -3727,7 +3727,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } @@ -3737,67 +3737,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } @@ -3807,7 +3807,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } @@ -3823,7 +3823,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } @@ -3837,7 +3837,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } @@ -3849,67 +3849,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } @@ -3921,13 +3921,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } @@ -3937,55 +3937,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } , { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } @@ -3993,7 +3993,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } @@ -4005,19 +4005,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index 0ff8dd7..b2929c5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ] ] ] } } , { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } @@ -49,7 +49,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ] ] ] } } @@ -57,7 +57,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ] ] ], [ [ [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } @@ -77,13 +77,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ] ] ] } } @@ -91,19 +91,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ] ] ], [ [ [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ] ] ] } } @@ -113,7 +113,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } @@ -133,19 +133,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ] ] ] } } @@ -157,7 +157,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } @@ -193,19 +193,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ] ] ] ] } } @@ -213,7 +213,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } @@ -225,37 +225,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ] ] ] } } @@ -263,7 +263,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ] ] } } @@ -271,19 +271,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } @@ -293,37 +293,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } @@ -331,7 +331,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ] ] ] } } @@ -345,7 +345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } @@ -369,7 +369,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } @@ -377,37 +377,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } @@ -427,7 +427,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } @@ -437,31 +437,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ] ] ] } } @@ -483,7 +483,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ] ] ] } } @@ -529,7 +529,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ] ] ] } } @@ -567,7 +567,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } @@ -575,31 +575,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } , { "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ] ] ], [ [ [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.376772 ], [ 44.417725, 38.281313 ] ] ] ] } } @@ -627,7 +627,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } @@ -639,37 +639,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } @@ -677,7 +677,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } @@ -697,7 +697,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } @@ -705,31 +705,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ] ] ] ] } } @@ -737,7 +737,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } @@ -749,7 +749,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } @@ -757,55 +757,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } @@ -813,7 +813,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } @@ -821,37 +821,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } @@ -859,7 +859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } @@ -867,31 +867,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -899,7 +899,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } @@ -907,7 +907,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } @@ -915,43 +915,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } @@ -961,7 +961,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } @@ -969,7 +969,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } @@ -977,61 +977,61 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } @@ -1039,7 +1039,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } @@ -1049,7 +1049,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } @@ -1065,7 +1065,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } @@ -1105,7 +1105,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } @@ -1117,7 +1117,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } @@ -1125,19 +1125,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } @@ -1145,7 +1145,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } @@ -1153,43 +1153,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } @@ -1199,7 +1199,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } @@ -1215,7 +1215,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } @@ -1227,7 +1227,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } @@ -1247,7 +1247,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } @@ -1255,7 +1255,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } @@ -1263,7 +1263,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } @@ -1271,13 +1271,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } @@ -1285,7 +1285,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } @@ -1293,37 +1293,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } @@ -1331,7 +1331,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } @@ -1339,49 +1339,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } @@ -1417,7 +1417,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } @@ -1435,7 +1435,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } @@ -1449,7 +1449,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } @@ -1457,7 +1457,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } @@ -1465,49 +1465,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } , { "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } @@ -1517,7 +1517,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } , { "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } @@ -1535,7 +1535,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } , { "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } @@ -1573,7 +1573,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } @@ -1599,7 +1599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } @@ -1663,7 +1663,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } @@ -1679,7 +1679,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } @@ -1689,43 +1689,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } @@ -1743,7 +1743,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } @@ -1779,7 +1779,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } @@ -1815,7 +1815,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } @@ -1859,7 +1859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } @@ -1899,7 +1899,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } @@ -1917,7 +1917,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } @@ -1929,13 +1929,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } @@ -1943,49 +1943,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } , { "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } @@ -2001,7 +2001,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } @@ -2041,7 +2041,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } @@ -2059,67 +2059,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } @@ -2129,7 +2129,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } @@ -2155,7 +2155,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } @@ -2173,61 +2173,61 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } @@ -2251,7 +2251,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } @@ -2269,7 +2269,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } @@ -2279,67 +2279,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } @@ -2349,7 +2349,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } @@ -2365,7 +2365,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } @@ -2379,7 +2379,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } @@ -2391,67 +2391,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } @@ -2463,13 +2463,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } @@ -2479,55 +2479,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } , { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } @@ -2535,7 +2535,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } @@ -2547,19 +2547,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json index 65f818d..dd8b388 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } @@ -371,7 +371,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } @@ -393,7 +393,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } @@ -481,7 +481,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] ] } } @@ -541,7 +541,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -743,7 +743,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } @@ -753,7 +753,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } @@ -761,7 +761,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } @@ -783,7 +783,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } @@ -859,19 +859,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } @@ -913,7 +913,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } @@ -1079,7 +1079,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1087,7 +1087,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } @@ -1107,7 +1107,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } @@ -1143,7 +1143,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } @@ -1151,13 +1151,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1165,13 +1165,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } @@ -1191,7 +1191,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } @@ -1229,7 +1229,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } @@ -1265,7 +1265,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } @@ -1275,19 +1275,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } @@ -1325,7 +1325,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } , { "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } @@ -1387,7 +1387,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } @@ -1453,7 +1453,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1461,19 +1461,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } , { "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } @@ -1513,7 +1513,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } @@ -1523,7 +1523,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } @@ -1533,7 +1533,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } @@ -1565,13 +1565,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } @@ -1585,31 +1585,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -1617,13 +1617,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } @@ -1631,7 +1631,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } , { "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } @@ -1657,19 +1657,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } @@ -1679,7 +1679,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } @@ -1687,7 +1687,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } @@ -1701,13 +1701,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } , { "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } @@ -1733,7 +1733,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } @@ -1747,7 +1747,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } @@ -1755,25 +1755,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } @@ -1787,7 +1787,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } @@ -1807,7 +1807,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } , { "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } @@ -1817,7 +1817,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } , { "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } @@ -1859,7 +1859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } @@ -1867,7 +1867,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } @@ -1875,7 +1875,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } , { "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } @@ -1887,7 +1887,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } , { "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } @@ -1905,7 +1905,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ] ] ] } } , { "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } @@ -1923,7 +1923,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } @@ -1949,7 +1949,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } , { "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } @@ -1967,7 +1967,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } , { "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } @@ -1977,13 +1977,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ] ] ] } } , { "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } @@ -1995,7 +1995,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } , { "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } @@ -2015,7 +2015,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } @@ -2023,19 +2023,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } , { "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } @@ -2049,13 +2049,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } , { "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ] ] ] } } @@ -2071,7 +2071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } @@ -2081,19 +2081,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } @@ -2101,7 +2101,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } @@ -2109,7 +2109,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } , { "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } @@ -2119,25 +2119,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json index 866fce3..dd1260b 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } @@ -371,7 +371,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } @@ -407,7 +407,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } @@ -517,7 +517,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } @@ -593,7 +593,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } @@ -827,19 +827,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.104004, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.334376 ], [ -108.808594, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.547852, 68.334376 ], [ -98.569336, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.592285, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.808594, 68.334376 ], [ -104.941406, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.334376 ], [ -96.547852, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.104004, 68.334376 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } @@ -861,7 +861,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } @@ -873,13 +873,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } @@ -909,7 +909,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.919434, 68.334376 ], [ -108.786621, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.525879, 68.334376 ], [ -98.547363, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.570312, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.334376 ], [ -104.919434, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.334376 ], [ -96.525879, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.082031, 68.334376 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } @@ -1011,7 +1011,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.060059, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.919434, 68.342487 ], [ -108.764648, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.569824, 68.342487 ], [ -98.547363, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.570312, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.764648, 68.342487 ], [ -104.919434, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.342487 ], [ -96.569824, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.060059, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } @@ -1023,13 +1023,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } @@ -1081,7 +1081,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } @@ -1283,7 +1283,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1295,13 +1295,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } @@ -1327,7 +1327,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } @@ -1369,37 +1369,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.998535, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1411,7 +1411,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.998535, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1423,19 +1423,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -1451,7 +1451,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1461,7 +1461,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1469,7 +1469,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1477,19 +1477,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] ] } } @@ -1501,7 +1501,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } @@ -1525,7 +1525,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -1577,7 +1577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.809570, 68.277521 ], [ -108.720703, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.295166, 68.277521 ], [ -98.536377, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.592285, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.720703, 68.277521 ], [ -104.809570, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.277521 ], [ -96.295166, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.246826, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1589,7 +1589,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1599,7 +1599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } @@ -1609,25 +1609,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } @@ -1669,7 +1669,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } @@ -1687,7 +1687,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } @@ -1695,25 +1695,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } @@ -1757,7 +1757,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } @@ -1859,7 +1859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } @@ -1943,7 +1943,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1955,7 +1955,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } @@ -1963,19 +1963,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } @@ -1983,13 +1983,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } @@ -2051,7 +2051,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } @@ -2077,37 +2077,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } @@ -2119,7 +2119,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } @@ -2159,7 +2159,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } @@ -2171,31 +2171,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } @@ -2205,7 +2205,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } @@ -2225,13 +2225,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } @@ -2241,55 +2241,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } @@ -2297,7 +2297,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } @@ -2305,43 +2305,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.993042, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2351,7 +2351,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.993042, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2361,31 +2361,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -2393,7 +2393,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2403,7 +2403,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2413,7 +2413,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2421,7 +2421,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2429,31 +2429,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } @@ -2463,7 +2463,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -2471,7 +2471,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2481,7 +2481,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2489,7 +2489,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2497,7 +2497,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2505,7 +2505,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2513,37 +2513,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } @@ -2551,7 +2551,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } @@ -2561,7 +2561,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } @@ -2577,7 +2577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } @@ -2617,7 +2617,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } @@ -2629,7 +2629,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2639,7 +2639,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2647,7 +2647,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2655,7 +2655,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2665,7 +2665,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2675,7 +2675,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2683,31 +2683,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } @@ -2715,7 +2715,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } @@ -2725,7 +2725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } @@ -2741,7 +2741,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } @@ -2753,7 +2753,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } @@ -2773,7 +2773,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2783,7 +2783,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2793,7 +2793,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2803,13 +2803,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2819,7 +2819,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } @@ -2829,37 +2829,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } @@ -2867,7 +2867,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } @@ -2875,49 +2875,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } @@ -2953,7 +2953,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } @@ -2971,7 +2971,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } @@ -2985,7 +2985,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } @@ -2993,7 +2993,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } @@ -3001,49 +3001,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } , { "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } @@ -3053,7 +3053,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } , { "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } @@ -3071,7 +3071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } , { "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } @@ -3109,7 +3109,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } @@ -3135,7 +3135,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } @@ -3199,7 +3199,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } @@ -3215,7 +3215,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } @@ -3225,43 +3225,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } @@ -3279,7 +3279,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } @@ -3315,7 +3315,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ] ] ] } } @@ -3351,7 +3351,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } @@ -3395,7 +3395,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } @@ -3435,7 +3435,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } @@ -3453,7 +3453,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } @@ -3465,13 +3465,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } @@ -3479,49 +3479,49 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } , { "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } @@ -3537,7 +3537,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } @@ -3577,7 +3577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } @@ -3595,67 +3595,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } @@ -3665,7 +3665,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } @@ -3691,7 +3691,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } @@ -3709,61 +3709,61 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } @@ -3787,7 +3787,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } @@ -3805,7 +3805,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } @@ -3815,67 +3815,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } @@ -3885,7 +3885,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } @@ -3901,7 +3901,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } @@ -3915,7 +3915,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } @@ -3927,67 +3927,67 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } @@ -3999,13 +3999,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } @@ -4015,55 +4015,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } , { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } @@ -4071,7 +4071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] ] } } @@ -4083,19 +4083,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } ] } ] } diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json index 171e530..1171b85 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.316584 ], [ -123.486328, 46.316584 ], [ -122.958984, 46.134170 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.644768 ], [ -121.640625, 45.767523 ], [ -121.113281, 45.644768 ], [ -120.673828, 45.767523 ], [ -120.234375, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.982422, 46.012224 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.058594, 42.032974 ], [ -124.277344, 42.032974 ] ] } } @@ -235,7 +235,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.486328, 46.286224 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.596680, 45.736860 ], [ -121.069336, 45.644768 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -459,7 +459,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.486328, 46.286224 ], [ -123.244629, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.761230, 45.951150 ], [ -122.739258, 45.782848 ], [ -122.673340, 45.644768 ], [ -122.431641, 45.598666 ], [ -122.189941, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.574707, 45.736860 ], [ -121.223145, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.168457, 45.752193 ], [ -119.794922, 45.859412 ], [ -119.597168, 45.935871 ], [ -119.355469, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.012224 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014648, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -589,7 +589,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.296387, 43.945372 ], [ -91.647949, 44.087585 ], [ -91.757812, 44.182204 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.757812, 43.516689 ] ] } } @@ -725,7 +725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -111.060791, 41.640078 ], [ -111.060791, 41.029643 ], [ -109.061279, 41.004775 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -104.051514, 41.004775 ], [ -109.061279, 41.004775 ] ] } } @@ -807,7 +807,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.782959, 46.286224 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.947998, 46.134170 ], [ -122.761230, 45.943511 ], [ -122.728271, 45.775186 ], [ -122.662354, 45.637087 ], [ -122.420654, 45.598666 ], [ -122.178955, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.563721, 45.736860 ], [ -121.212158, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.838623, 45.675482 ], [ -120.618896, 45.759859 ], [ -120.168457, 45.744527 ], [ -119.794922, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.344482, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.004593 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.003662, 42.000325 ], [ -124.222412, 42.000325 ] ] } } @@ -881,7 +881,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.373535, 41.640078 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 39.334297 ], [ -90.758057, 39.266284 ], [ -90.670166, 39.078908 ], [ -90.659180, 38.908133 ], [ -90.538330, 38.873929 ], [ -90.351562, 38.933776 ], [ -90.164795, 38.771216 ], [ -90.219727, 38.591114 ], [ -90.307617, 38.444985 ], [ -90.373535, 38.264063 ], [ -90.230713, 38.117272 ], [ -90.032959, 37.978845 ], [ -90.000000, 37.978845 ], [ -89.923096, 37.970185 ], [ -89.659424, 37.753344 ], [ -89.560547, 37.727280 ], [ -89.483643, 37.483577 ], [ -89.516602, 37.335224 ], [ -89.395752, 37.081476 ], [ -89.285889, 37.107765 ], [ -89.110107, 36.958671 ] ] } } @@ -983,7 +983,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.878906, 42.706660 ], [ -90.747070, 42.666281 ], [ -90.648193, 42.512602 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.648193, 42.512602 ], [ -90.593262, 42.431566 ], [ -90.472412, 42.382894 ], [ -90.417480, 42.277309 ], [ -90.263672, 42.195969 ], [ -90.164795, 42.106374 ], [ -90.219727, 41.836828 ], [ -90.472412, 41.541478 ], [ -90.692139, 41.483891 ], [ -90.878906, 41.459195 ] ] } } @@ -1037,7 +1037,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.003662, 41.310824 ], [ -120.003662, 40.979898 ], [ -120.003662, 38.997841 ], [ -116.323242, 36.323977 ], [ -114.642334, 35.056980 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -114.032593, 36.998166 ], [ -114.038086, 40.979898 ], [ -114.038086, 41.310824 ] ] } } @@ -1051,7 +1051,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -123.986206, 46.271037 ], [ -123.777466, 46.282428 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.942505, 46.130363 ], [ -122.755737, 45.939691 ], [ -122.728271, 45.771355 ], [ -122.656860, 45.633246 ], [ -122.420654, 45.594822 ], [ -122.178955, 45.598666 ], [ -121.788940, 45.702343 ], [ -121.563721, 45.733025 ], [ -121.206665, 45.690833 ], [ -121.047363, 45.640928 ], [ -120.838623, 45.675482 ], [ -120.613403, 45.756026 ], [ -120.162964, 45.740693 ], [ -119.789429, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.338989, 45.890008 ], [ -118.981934, 45.993145 ], [ -116.916504, 46.000778 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -120.003662, 41.996243 ], [ -124.216919, 42.000325 ] ] } } @@ -1075,7 +1075,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -111.055298, 41.310824 ], [ -111.055298, 41.029643 ], [ -109.055786, 41.004775 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -104.046021, 41.004775 ], [ -109.055786, 41.004775 ] ] } } @@ -1143,7 +1143,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -111.088257, 44.508259 ], [ -111.198120, 44.563077 ], [ -111.296997, 44.703802 ], [ -111.401367, 44.731126 ], [ -111.544189, 44.531759 ], [ -111.774902, 44.500423 ], [ -112.340698, 44.563077 ], [ -112.362671, 44.465151 ], [ -112.500000, 44.480830 ], [ -112.692261, 44.500423 ], [ -112.879028, 44.363133 ], [ -112.939453, 44.453389 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -111.055298, 42.004407 ], [ -112.500000, 42.004407 ], [ -112.939453, 42.000325 ] ] } } @@ -1195,7 +1195,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.439453, 38.903858 ], [ -90.351562, 38.933776 ], [ -90.159302, 38.771216 ], [ -90.214233, 38.586820 ], [ -90.307617, 38.440682 ], [ -90.373535, 38.264063 ], [ -90.230713, 38.117272 ], [ -90.032959, 37.974515 ], [ -90.000000, 37.974515 ], [ -89.917603, 37.970185 ], [ -89.659424, 37.749001 ], [ -89.555054, 37.722935 ], [ -89.483643, 37.479217 ], [ -89.516602, 37.330857 ], [ -89.390259, 37.081476 ], [ -89.280396, 37.107765 ], [ -89.104614, 36.954282 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.439453, 36.487557 ], [ -90.115356, 36.465472 ], [ -90.032959, 36.341678 ], [ -90.258179, 36.124565 ], [ -90.318604, 36.026889 ], [ -90.000000, 36.026889 ], [ -89.664917, 36.026889 ] ] } } @@ -1289,7 +1289,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -90.439453, 42.322001 ], [ -90.417480, 42.273244 ], [ -90.263672, 42.191899 ], [ -90.159302, 42.106374 ], [ -90.214233, 41.836828 ], [ -90.439453, 41.566142 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -87.599487, 45.108423 ], [ -87.615967, 45.112300 ], [ -87.747803, 45.228481 ], [ -87.676392, 45.390735 ], [ -87.896118, 45.398450 ], [ -87.852173, 45.560218 ], [ -87.791748, 45.640928 ], [ -87.879639, 45.782848 ], [ -88.115845, 45.844108 ], [ -88.170776, 46.008409 ], [ -88.363037, 46.023668 ], [ -88.648682, 46.023668 ], [ -89.225464, 46.202646 ], [ -90.000000, 46.362093 ], [ -90.098877, 46.381044 ], [ -90.181274, 46.562637 ], [ -90.335083, 46.600393 ], [ -90.401001, 46.577743 ] ] } } diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json index f4911ae..b9f43b7 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json @@ -11,1171 +11,1171 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.793945, 46.286224 ], [ -123.486328, 46.286224 ], [ -123.266602, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.739258, 45.798170 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.816406, 45.706179 ], [ -121.596680, 45.736860 ], [ -121.245117, 45.706179 ], [ -121.069336, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.794922, 45.859412 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.793945, 46.286224 ], [ -123.486328, 46.286224 ], [ -123.244629, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.761230, 45.951150 ], [ -122.739258, 45.782848 ], [ -122.673340, 45.644768 ], [ -122.431641, 45.598666 ], [ -122.189941, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.574707, 45.736860 ], [ -121.223145, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.168457, 45.752193 ], [ -119.794922, 45.859412 ], [ -119.597168, 45.935871 ], [ -119.355469, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.012224 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.406250, 43.992815 ], [ -91.296387, 43.945372 ], [ -91.274414, 43.866218 ], [ -91.274414, 43.628123 ], [ -91.230469, 43.516689 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -111.060791, 41.508577 ], [ -111.060791, 41.029643 ], [ -109.061279, 41.004775 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.991699, 46.271037 ], [ -123.782959, 46.286224 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.947998, 46.134170 ], [ -122.761230, 45.943511 ], [ -122.728271, 45.775186 ], [ -122.662354, 45.637087 ], [ -122.420654, 45.598666 ], [ -122.178955, 45.598666 ], [ -121.794434, 45.706179 ], [ -121.563721, 45.736860 ], [ -121.212158, 45.690833 ], [ -121.047363, 45.644768 ], [ -120.838623, 45.675482 ], [ -120.618896, 45.759859 ], [ -120.168457, 45.744527 ], [ -119.794922, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.344482, 45.890008 ], [ -118.981934, 45.996962 ], [ -116.916504, 46.004593 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -79.486084, 39.724089 ], [ -75.794678, 39.724089 ] ], [ [ -90.703125, 41.483891 ], [ -90.582275, 41.508577 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.703125, 42.609706 ], [ -90.648193, 42.512602 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.056980 ], [ -116.323242, 36.323977 ], [ -118.119507, 37.644685 ], [ -120.003662, 38.997841 ], [ -120.003662, 41.244772 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.986206, 46.271037 ], [ -123.777466, 46.282428 ], [ -123.475342, 46.278631 ], [ -123.233643, 46.187437 ], [ -122.942505, 46.130363 ], [ -122.755737, 45.939691 ], [ -122.728271, 45.771355 ], [ -122.656860, 45.633246 ], [ -122.420654, 45.594822 ], [ -122.178955, 45.598666 ], [ -121.788940, 45.702343 ], [ -121.563721, 45.733025 ], [ -121.206665, 45.690833 ], [ -121.047363, 45.640928 ], [ -120.838623, 45.675482 ], [ -120.613403, 45.756026 ], [ -120.162964, 45.740693 ], [ -119.789429, 45.851760 ], [ -119.597168, 45.935871 ], [ -119.338989, 45.890008 ], [ -118.981934, 45.993145 ], [ -116.916504, 46.000778 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -102.046509, 36.993778 ], [ -94.625244, 37.002553 ] ], [ [ -90.252686, 35.021000 ], [ -89.648438, 35.025498 ] ], [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.055786, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.088257, 44.508259 ], [ -111.198120, 44.563077 ], [ -111.296997, 44.703802 ], [ -111.401367, 44.731126 ], [ -111.544189, 44.531759 ], [ -111.774902, 44.500423 ], [ -112.340698, 44.563077 ], [ -112.362671, 44.465151 ], [ -112.692261, 44.500423 ], [ -112.851562, 44.378840 ] ], [ [ -96.459961, 42.492353 ], [ -96.410522, 42.391009 ], [ -96.350098, 42.224450 ], [ -96.350098, 42.143042 ], [ -96.168823, 41.955405 ], [ -96.108398, 41.791793 ], [ -96.097412, 41.557922 ], [ -96.026001, 41.525030 ], [ -95.960083, 41.405656 ], [ -95.861206, 41.116607 ], [ -95.839233, 40.946714 ], [ -95.866699, 40.768062 ], [ -95.844727, 40.713956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -88.170776, 35.003003 ], [ -88.099365, 34.809293 ], [ -88.275146, 33.513919 ], [ -88.450928, 31.914868 ], [ -88.417969, 30.387092 ] ], [ [ -81.683350, 36.589068 ], [ -79.996948, 36.544949 ], [ -78.002930, 36.540536 ], [ -75.871582, 36.553775 ] ], [ [ -90.351562, 38.929502 ], [ -90.159302, 38.771216 ], [ -90.214233, 38.586820 ], [ -90.307617, 38.440682 ], [ -90.351562, 38.315801 ] ], [ [ -90.351562, 38.246809 ], [ -90.230713, 38.117272 ], [ -90.032959, 37.974515 ], [ -89.917603, 37.970185 ], [ -89.659424, 37.749001 ], [ -89.555054, 37.722935 ], [ -89.483643, 37.479217 ], [ -89.516602, 37.330857 ], [ -89.390259, 37.081476 ], [ -89.280396, 37.107765 ], [ -89.104614, 36.954282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -71.801147, 42.016652 ], [ -71.795654, 41.467428 ], [ -71.856079, 41.323201 ] ], [ [ -90.351562, 42.240719 ], [ -90.263672, 42.191899 ], [ -90.159302, 42.106374 ], [ -90.214233, 41.836828 ], [ -90.351562, 41.664705 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.986206, 46.269139 ], [ -123.777466, 46.282428 ], [ -123.574219, 46.280529 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.054732 ], [ -116.323242, 36.323977 ], [ -118.116760, 37.644685 ], [ -120.000916, 38.995707 ], [ -120.000916, 41.112469 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.916504, 46.000778 ], [ -118.979187, 45.993145 ], [ -119.338989, 45.890008 ], [ -119.594421, 45.933960 ], [ -119.789429, 45.851760 ], [ -120.160217, 45.740693 ], [ -120.610657, 45.754110 ], [ -120.838623, 45.673563 ], [ -121.047363, 45.639007 ], [ -121.203918, 45.690833 ], [ -121.563721, 45.733025 ], [ -121.788940, 45.702343 ], [ -122.176208, 45.596744 ], [ -122.420654, 45.592900 ], [ -122.654114, 45.631326 ], [ -122.728271, 45.771355 ], [ -122.752991, 45.939691 ], [ -122.939758, 46.130363 ], [ -123.230896, 46.187437 ], [ -123.472595, 46.278631 ], [ -123.777466, 46.282428 ], [ -123.925781, 46.272936 ] ], [ [ -117.029114, 42.000325 ], [ -114.035339, 41.994202 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 49.000042 ], [ -117.031860, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.044800, 31.341909 ], [ -109.044800, 32.101190 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.047546, 37.000359 ], [ -103.005066, 36.995972 ] ], [ [ -102.052002, 40.002372 ], [ -101.074219, 40.002372 ] ], [ [ -111.055298, 41.112469 ], [ -111.055298, 41.029643 ], [ -109.055786, 41.002703 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.085510, 44.506300 ], [ -111.195374, 44.563077 ], [ -111.294250, 44.701850 ], [ -111.401367, 44.729174 ], [ -111.544189, 44.531759 ], [ -111.772156, 44.498464 ], [ -112.337952, 44.561120 ], [ -112.362671, 44.463191 ], [ -112.675781, 44.498464 ] ], [ [ -109.055786, 41.002703 ], [ -109.055786, 40.847060 ] ], [ [ -104.026794, 45.956878 ], [ -104.078979, 45.042478 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.095459, 49.007249 ], [ -104.092712, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -93.836975, 29.690439 ], [ -93.919373, 29.823966 ], [ -93.817749, 29.969212 ], [ -93.669434, 30.102366 ], [ -93.666687, 30.301761 ], [ -93.738098, 30.368136 ], [ -93.650208, 30.607186 ], [ -93.587036, 30.715865 ], [ -93.490906, 31.081165 ], [ -93.578796, 31.217499 ], [ -93.694153, 31.445067 ], [ -93.782043, 31.676758 ], [ -93.836975, 31.830899 ], [ -93.999023, 31.942840 ], [ -94.010010, 32.101190 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.798035, 40.584757 ], [ -95.863953, 40.765982 ], [ -95.836487, 40.944639 ], [ -95.858459, 41.112469 ] ], [ [ -95.798035, 40.584757 ], [ -94.004517, 40.586842 ], [ -92.853699, 40.593100 ], [ -91.760559, 40.616037 ], [ -91.568298, 40.453217 ], [ -91.430969, 40.369566 ] ], [ [ -94.630737, 36.542743 ], [ -93.414001, 36.527295 ], [ -91.252441, 36.525088 ], [ -90.112610, 36.463263 ], [ -90.030212, 36.339466 ], [ -90.255432, 36.124565 ], [ -90.315857, 36.024668 ], [ -89.824219, 36.024668 ] ], [ [ -90.249939, 35.021000 ], [ -89.824219, 35.023249 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.019853 ], [ -98.442993, 45.964515 ], [ -101.425781, 45.964515 ] ], [ [ -92.013245, 46.713502 ], [ -92.276917, 46.656977 ], [ -92.265930, 46.096091 ], [ -92.298889, 46.097995 ], [ -92.757568, 45.890008 ], [ -92.900391, 45.706179 ], [ -92.691650, 45.519820 ], [ -92.765808, 45.267155 ], [ -92.768555, 44.997825 ], [ -92.798767, 44.777936 ], [ -92.507629, 44.584599 ], [ -92.386780, 44.576774 ], [ -92.062683, 44.433780 ], [ -91.950073, 44.365097 ], [ -91.881409, 44.258970 ], [ -91.628723, 44.085612 ], [ -91.290894, 43.937462 ], [ -91.257935, 43.856316 ], [ -91.255188, 43.614205 ], [ -91.230469, 43.502745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -97.229004, 49.001844 ], [ -97.215271, 48.902643 ], [ -97.152100, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.607239, 30.178373 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.685164 ], [ -89.788513, 30.848005 ], [ -89.761047, 31.015279 ], [ -90.175781, 31.015279 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.825439, 39.106620 ], [ -84.811707, 41.112469 ] ], [ [ -89.500122, 36.507429 ], [ -88.071899, 36.498597 ], [ -88.074646, 36.655200 ], [ -87.876892, 36.657403 ], [ -87.843933, 36.611118 ], [ -87.217712, 36.639774 ], [ -86.679382, 36.635366 ], [ -86.094360, 36.626550 ], [ -85.520325, 36.597889 ], [ -85.231934, 36.611118 ], [ -84.350281, 36.569218 ], [ -83.674622, 36.600094 ], [ -83.386230, 36.657403 ], [ -83.180237, 36.719072 ], [ -83.089600, 36.815881 ], [ -82.817688, 36.936721 ], [ -82.710571, 37.042024 ], [ -82.685852, 37.123096 ], [ -82.372742, 37.239075 ], [ -81.974487, 37.538044 ] ], [ [ -83.078613, 34.980502 ], [ -83.188477, 34.897195 ], [ -83.347778, 34.707751 ], [ -83.078613, 34.540500 ], [ -82.902832, 34.481656 ], [ -82.718811, 34.164091 ], [ -82.597961, 33.986641 ], [ -82.251892, 33.749464 ], [ -82.183228, 33.626055 ], [ -81.944275, 33.463525 ], [ -81.828918, 33.224903 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.794201 ], [ -81.378479, 32.683308 ], [ -81.411438, 32.609303 ], [ -81.227417, 32.500496 ], [ -81.128540, 32.312670 ], [ -81.128540, 32.122127 ], [ -81.037903, 32.084902 ], [ -80.867615, 32.033692 ] ], [ [ -90.175781, 38.786204 ], [ -90.156555, 38.771216 ], [ -90.175781, 38.706946 ] ], [ [ -90.175781, 38.076204 ], [ -90.030212, 37.972350 ], [ -89.917603, 37.970185 ], [ -89.656677, 37.749001 ], [ -89.555054, 37.720763 ], [ -89.480896, 37.479217 ], [ -89.516602, 37.328673 ], [ -89.390259, 37.081476 ], [ -89.280396, 37.107765 ], [ -89.104614, 36.954282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -79.760742, 42.238685 ], [ -79.760742, 42.000325 ], [ -78.574219, 42.000325 ] ], [ [ -90.175781, 42.120636 ], [ -90.159302, 42.104336 ], [ -90.175781, 42.010530 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.789185, 39.724089 ], [ -76.670837, 39.721976 ], [ -77.525024, 39.726201 ], [ -78.552246, 39.719863 ], [ -78.925781, 39.721976 ] ], [ [ -75.789185, 39.724089 ], [ -75.712280, 39.804316 ], [ -75.621643, 39.848612 ], [ -75.407410, 39.795876 ] ], [ [ -73.913269, 40.961234 ], [ -74.209900, 41.112469 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.841614, 41.428313 ], [ -75.011902, 41.496235 ], [ -75.077820, 41.642131 ], [ -75.050354, 41.752873 ], [ -75.168457, 41.842967 ], [ -75.388184, 42.000325 ], [ -78.925781, 42.000325 ] ], [ [ -71.073303, 45.286482 ], [ -70.944214, 43.466874 ], [ -70.982666, 43.369119 ], [ -70.798645, 43.221190 ], [ -70.751953, 43.080925 ], [ -70.647583, 43.090955 ] ], [ [ -71.801147, 42.014611 ], [ -71.380920, 42.024814 ], [ -71.306763, 41.763117 ], [ -71.150208, 41.648288 ], [ -71.122742, 41.496235 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 9, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.214172, 42.000325 ], [ -123.662109, 41.999305 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 9, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.984833, 46.269139 ], [ -123.777466, 46.282428 ], [ -123.662109, 46.281479 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.037109, 37.588119 ], [ -118.115387, 37.644685 ], [ -120.000916, 38.995707 ], [ -120.000916, 41.046217 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.999542, 41.993181 ], [ -123.837891, 42.000325 ] ], [ [ -119.999542, 41.993181 ], [ -120.000916, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.037109, 45.996962 ], [ -118.979187, 45.993145 ], [ -119.337616, 45.889052 ], [ -119.593048, 45.933005 ], [ -119.788055, 45.850804 ], [ -120.158844, 45.740693 ], [ -120.610657, 45.754110 ], [ -120.837250, 45.673563 ], [ -121.047363, 45.638047 ], [ -121.203918, 45.690833 ], [ -121.562347, 45.733025 ], [ -121.788940, 45.701384 ], [ -122.176208, 45.595783 ], [ -122.420654, 45.592900 ], [ -122.652740, 45.630365 ], [ -122.726898, 45.770397 ], [ -122.752991, 45.938736 ], [ -122.938385, 46.129412 ], [ -123.229523, 46.186486 ], [ -123.472595, 46.277682 ], [ -123.777466, 46.282428 ], [ -123.837891, 46.278631 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.053608 ], [ -116.321869, 36.322871 ], [ -116.788788, 36.668419 ] ], [ [ -114.642334, 35.053608 ], [ -114.623108, 34.964748 ], [ -114.568176, 34.828459 ], [ -114.485779, 34.653545 ], [ -114.355316, 34.464674 ], [ -114.167175, 34.273106 ], [ -114.469299, 34.067450 ], [ -114.548950, 33.610045 ], [ -114.743958, 33.380999 ], [ -114.691772, 33.204222 ], [ -114.656067, 33.054716 ], [ -114.480286, 32.916485 ], [ -114.590149, 32.716822 ], [ -114.723358, 32.717977 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.031219, 36.994875 ], [ -114.027100, 36.527295 ] ], [ [ -116.597900, 36.527295 ], [ -118.212891, 37.716418 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.029114, 42.000325 ], [ -117.029114, 41.998284 ], [ -118.212891, 41.996243 ] ], [ [ -117.029114, 42.000325 ], [ -117.014008, 43.797863 ], [ -116.927490, 44.081666 ], [ -117.008514, 44.211741 ], [ -117.195282, 44.279621 ], [ -117.192535, 44.439663 ], [ -117.052460, 44.666700 ], [ -116.836853, 44.864630 ], [ -116.710510, 45.151053 ] ], [ [ -114.035339, 41.993181 ], [ -112.412109, 41.998284 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 46.000778 ], [ -118.212891, 45.996008 ] ], [ [ -113.480530, 45.026950 ], [ -113.503876, 45.124898 ], [ -113.681030, 45.249755 ], [ -113.795013, 45.565025 ], [ -113.914490, 45.703302 ], [ -114.036713, 45.730150 ], [ -114.138336, 45.590017 ], [ -114.336090, 45.470725 ], [ -114.514618, 45.569832 ], [ -114.524231, 45.825928 ], [ -114.407501, 45.890008 ], [ -114.492645, 46.147492 ], [ -114.395142, 46.410405 ], [ -114.285278, 46.632465 ], [ -114.586029, 46.641894 ], [ -114.844208, 46.786897 ], [ -115.122986, 47.095370 ], [ -115.289154, 47.251271 ], [ -115.519867, 47.345337 ], [ -115.705261, 47.505142 ], [ -115.705261, 47.685730 ], [ -115.968933, 47.951305 ], [ -116.047211, 48.980217 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 49.000042 ], [ -117.031860, 48.864715 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.044800, 31.340736 ], [ -109.044800, 32.026706 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.046173, 31.877558 ], [ -109.046173, 36.668419 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.046173, 37.000359 ], [ -110.496368, 37.008036 ], [ -112.418976, 37.010229 ], [ -112.587891, 37.009133 ] ], [ [ -109.046173, 37.000359 ], [ -109.046173, 36.527295 ] ], [ [ -111.055298, 41.046217 ], [ -111.055298, 41.028607 ], [ -109.054413, 41.002703 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.085510, 44.506300 ], [ -111.195374, 44.562099 ], [ -111.292877, 44.701850 ], [ -111.401367, 44.729174 ], [ -111.542816, 44.530780 ], [ -111.772156, 44.498464 ], [ -112.336578, 44.561120 ], [ -112.362671, 44.463191 ], [ -112.587891, 44.488668 ] ], [ [ -111.085510, 44.506300 ], [ -111.067657, 44.542526 ], [ -111.071777, 45.050240 ], [ -109.102478, 45.057031 ], [ -107.547913, 45.046359 ], [ -106.787109, 45.049270 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.488668 ], [ -111.051178, 42.002366 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -111.071777, 45.026950 ], [ -111.071777, 45.050240 ], [ -109.102478, 45.057031 ], [ -107.547913, 45.046359 ], [ -106.787109, 45.049270 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.508331, 31.755029 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.999924 ], [ -105.731049, 31.999924 ], [ -103.930664, 31.999924 ], [ -103.002319, 31.999924 ], [ -103.002319, 32.026706 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -103.002319, 36.499701 ], [ -103.003693, 36.668419 ] ], [ [ -103.002319, 36.499701 ], [ -101.162109, 36.499701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -102.050629, 40.001320 ], [ -101.162109, 40.001320 ] ], [ [ -103.003693, 36.995972 ], [ -106.962891, 37.000359 ] ], [ [ -103.003693, 36.995972 ], [ -103.002319, 36.527295 ] ], [ [ -104.046021, 41.004775 ], [ -106.962891, 41.003739 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.078979, 45.041508 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.048300 ] ], [ [ -104.078979, 45.041508 ], [ -104.052887, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.026794, 45.956878 ], [ -101.162109, 45.964515 ] ], [ [ -104.026794, 45.956878 ], [ -104.078979, 45.041508 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.048300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.094086, 49.006348 ], [ -104.092712, 48.864715 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -95.537109, 33.874976 ], [ -95.770569, 33.881817 ], [ -95.977936, 33.879537 ], [ -96.149597, 33.798550 ], [ -96.317139, 33.756315 ], [ -96.464081, 33.805397 ], [ -96.797791, 33.751748 ], [ -96.948853, 33.918292 ], [ -97.105408, 33.774581 ], [ -97.377319, 33.838483 ], [ -97.657471, 33.994612 ], [ -97.958221, 33.894357 ], [ -98.088684, 34.134542 ], [ -98.554230, 34.110668 ], [ -98.852234, 34.165227 ], [ -99.188690, 34.235648 ], [ -99.337006, 34.443159 ], [ -99.599304, 34.376312 ], [ -99.762726, 34.457880 ], [ -100.000305, 34.565383 ], [ -100.000305, 35.519932 ], [ -100.000305, 36.499701 ], [ -101.001434, 36.499701 ], [ -101.337891, 36.499701 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.584757 ], [ -95.862579, 40.764941 ], [ -95.835114, 40.944639 ], [ -95.848846, 41.046217 ] ], [ [ -95.796661, 40.584757 ], [ -95.537109, 40.584757 ] ], [ [ -95.537109, 36.999262 ], [ -101.337891, 36.993778 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.453094, 43.502745 ], [ -95.537109, 43.500752 ] ], [ [ -96.453094, 43.502745 ], [ -96.586304, 43.501749 ], [ -96.587677, 43.258206 ], [ -96.459961, 43.125043 ], [ -96.484680, 43.016697 ], [ -96.535492, 42.855833 ], [ -96.616516, 42.692530 ], [ -96.454468, 42.581400 ], [ -96.455841, 42.489315 ], [ -96.623383, 42.503490 ], [ -96.709900, 42.551057 ], [ -96.755219, 42.634969 ], [ -97.028503, 42.717759 ], [ -97.288055, 42.846772 ], [ -97.645111, 42.836703 ], [ -97.882690, 42.840731 ], [ -97.969208, 42.794393 ], [ -98.337250, 42.873951 ], [ -98.595428, 43.000630 ], [ -101.337891, 43.000630 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.018900 ], [ -98.442993, 45.963561 ], [ -100.067596, 45.966425 ], [ -101.337891, 45.964515 ] ], [ [ -96.539612, 46.018900 ], [ -96.557465, 45.872800 ], [ -96.781311, 45.760817 ], [ -96.834869, 45.625563 ], [ -96.735992, 45.471688 ], [ -96.561584, 45.393628 ], [ -96.514893, 45.026950 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -97.229004, 49.000943 ], [ -97.215271, 48.902643 ], [ -97.190552, 48.864715 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -93.836975, 29.690439 ], [ -93.919373, 29.822774 ], [ -93.817749, 29.969212 ], [ -93.668060, 30.101178 ], [ -93.665314, 30.300575 ], [ -93.738098, 30.366951 ], [ -93.650208, 30.606004 ], [ -93.587036, 30.714685 ], [ -93.490906, 31.079989 ], [ -93.578796, 31.216325 ], [ -93.694153, 31.443895 ], [ -93.780670, 31.675590 ], [ -93.835602, 31.830899 ], [ -93.999023, 31.942840 ], [ -94.004517, 32.026706 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.629364, 36.541640 ], [ -93.412628, 36.527295 ], [ -92.308502, 36.523984 ], [ -91.252441, 36.523984 ], [ -90.112610, 36.462159 ], [ -90.030212, 36.338359 ], [ -90.254059, 36.123455 ], [ -90.315857, 36.023557 ], [ -89.912109, 36.023557 ] ], [ [ -94.629364, 36.541640 ], [ -94.430237, 35.484156 ], [ -94.452209, 34.511083 ], [ -94.481049, 33.636346 ], [ -94.910889, 33.832779 ], [ -95.191040, 33.938803 ], [ -95.419006, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.060822, 33.013270 ], [ -93.999023, 31.942840 ], [ -93.904266, 31.877558 ] ], [ [ -90.249939, 35.021000 ], [ -90.135956, 35.114292 ], [ -90.148315, 35.405842 ], [ -89.989014, 35.536696 ], [ -89.950562, 35.701917 ], [ -89.912109, 35.724218 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.623871, 37.000359 ], [ -95.712891, 36.999262 ] ], [ [ -91.430969, 40.369566 ], [ -91.568298, 40.453217 ], [ -91.759186, 40.614995 ], [ -92.852325, 40.593100 ], [ -94.003143, 40.585799 ], [ -94.898529, 40.583714 ], [ -95.712891, 40.584757 ] ], [ [ -91.430969, 40.369566 ], [ -91.410370, 40.551374 ], [ -91.154938, 40.700422 ], [ -91.087646, 40.852254 ], [ -90.957184, 41.025499 ], [ -90.964050, 41.046217 ] ], [ [ -91.430969, 40.369566 ], [ -91.518860, 40.120090 ], [ -91.428223, 39.821194 ], [ -91.263428, 39.615210 ], [ -91.072540, 39.445738 ], [ -90.841827, 39.310925 ], [ -90.749817, 39.266284 ], [ -90.666046, 39.075710 ], [ -90.650940, 38.908133 ], [ -90.535583, 38.866444 ], [ -90.347443, 38.930571 ], [ -90.156555, 38.770146 ], [ -90.212860, 38.585747 ], [ -90.306244, 38.439607 ], [ -90.370789, 38.264063 ], [ -90.229340, 38.114030 ], [ -90.030212, 37.972350 ], [ -89.917603, 37.969102 ], [ -89.912109, 37.964771 ] ], [ [ -94.629364, 36.541640 ], [ -93.460693, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.229095, 43.501749 ], [ -91.255188, 43.614205 ], [ -91.257935, 43.855326 ], [ -91.290894, 43.937462 ], [ -91.628723, 44.085612 ], [ -91.880035, 44.257987 ], [ -91.950073, 44.365097 ], [ -92.062683, 44.432799 ], [ -92.386780, 44.575796 ], [ -92.506256, 44.584599 ], [ -92.797394, 44.776961 ], [ -92.767181, 44.996854 ], [ -92.767181, 45.151053 ] ], [ [ -91.229095, 43.501749 ], [ -91.213989, 43.446937 ], [ -91.084900, 43.288202 ], [ -91.174164, 43.213183 ], [ -91.170044, 43.002639 ], [ -91.130219, 42.913189 ], [ -91.065674, 42.755080 ], [ -90.738831, 42.659212 ], [ -90.641327, 42.505515 ], [ -89.912109, 42.505515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.013245, 46.712561 ], [ -92.275543, 46.656977 ], [ -92.265930, 46.096091 ], [ -92.297516, 46.097043 ], [ -92.544708, 45.986466 ], [ -92.757568, 45.890008 ], [ -92.900391, 45.706179 ], [ -92.690277, 45.518857 ], [ -92.765808, 45.267155 ], [ -92.767181, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.605865, 30.177186 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.683983 ], [ -89.788513, 30.848005 ], [ -89.759674, 31.014102 ], [ -90.087891, 31.015279 ] ], [ [ -85.005341, 30.991737 ], [ -85.054779, 31.109389 ], [ -85.117950, 31.236289 ], [ -85.090485, 31.400535 ], [ -85.065765, 31.577365 ], [ -85.120697, 31.765537 ], [ -85.075378, 32.026706 ] ], [ [ -85.005341, 30.991737 ], [ -84.854279, 30.721768 ], [ -84.287109, 30.696973 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.498749, 36.506325 ], [ -89.524841, 36.410231 ], [ -89.585266, 36.267529 ], [ -89.663544, 36.023557 ] ], [ [ -88.168030, 35.000754 ], [ -89.265289, 35.022124 ], [ -90.087891, 35.022124 ] ], [ [ -88.168030, 35.000754 ], [ -86.910095, 34.999629 ], [ -85.626068, 34.986128 ], [ -85.366516, 33.744897 ], [ -85.130310, 32.751478 ], [ -84.987488, 32.439090 ], [ -84.899597, 32.259265 ], [ -85.064392, 32.083738 ], [ -85.101471, 31.877558 ] ], [ [ -90.087891, 36.425703 ], [ -90.030212, 36.338359 ], [ -90.087891, 36.283028 ] ], [ [ -90.087891, 36.023557 ], [ -89.663544, 36.023557 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.103241, 36.953184 ], [ -89.280396, 37.107765 ], [ -89.388885, 37.081476 ], [ -89.516602, 37.327581 ], [ -89.479523, 37.478128 ], [ -89.555054, 37.719677 ], [ -89.655304, 37.749001 ], [ -89.917603, 37.969102 ], [ -90.030212, 37.972350 ], [ -90.087891, 38.014558 ] ], [ [ -89.103241, 36.953184 ], [ -89.134827, 36.852153 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.612221 ], [ -89.454803, 36.527295 ] ], [ [ -84.824066, 39.106620 ], [ -84.810333, 40.773262 ], [ -84.810333, 41.046217 ] ], [ [ -84.824066, 39.106620 ], [ -84.482117, 39.084238 ], [ -84.304962, 38.987168 ], [ -84.287109, 38.972222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.522583, 41.708804 ], [ -87.526703, 41.708804 ], [ -87.528076, 40.913513 ] ], [ [ -86.824951, 41.761069 ], [ -86.824951, 41.756971 ], [ -85.748291, 41.751849 ], [ -84.807587, 41.756971 ], [ -84.807587, 41.678041 ] ], [ [ -87.662659, 45.151053 ], [ -87.614594, 45.109393 ], [ -87.613220, 45.111331 ], [ -87.598114, 45.106485 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.598114, 45.106485 ], [ -87.613220, 45.111331 ], [ -87.614594, 45.109393 ], [ -87.747803, 45.227513 ], [ -87.673645, 45.387842 ], [ -87.894745, 45.397486 ], [ -87.848053, 45.559256 ], [ -87.787628, 45.639968 ], [ -87.875519, 45.779975 ], [ -88.113098, 45.844108 ], [ -88.168030, 46.008409 ], [ -88.363037, 46.020807 ], [ -88.644562, 46.022714 ], [ -89.221344, 46.202646 ], [ -90.087891, 46.380096 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.491089, 30.730032 ], [ -81.702576, 30.748917 ], [ -81.900330, 30.822064 ], [ -82.021179, 30.789037 ], [ -82.023926, 30.440386 ], [ -82.153015, 30.351546 ], [ -82.227173, 30.525596 ], [ -83.849030, 30.675715 ], [ -84.462891, 30.704058 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.321442, 34.987253 ], [ -83.077240, 34.979377 ], [ -82.437286, 35.180543 ], [ -81.514435, 35.172686 ], [ -81.046143, 35.126648 ], [ -81.039276, 35.037868 ], [ -80.937653, 35.104181 ], [ -80.781097, 34.934356 ], [ -80.783844, 34.818313 ], [ -79.672852, 34.808166 ], [ -78.662109, 33.954752 ] ], [ [ -83.674622, 36.600094 ], [ -84.350281, 36.568115 ], [ -84.462891, 36.573630 ] ], [ [ -83.674622, 36.600094 ], [ -83.384857, 36.657403 ], [ -83.346405, 36.668419 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.674622, 36.600094 ], [ -82.187347, 36.567012 ], [ -81.680603, 36.585760 ] ], [ [ -83.674622, 36.600094 ], [ -83.384857, 36.657403 ], [ -83.178864, 36.719072 ], [ -83.089600, 36.815881 ], [ -82.816315, 36.935623 ], [ -82.709198, 37.040928 ], [ -82.685852, 37.122001 ], [ -82.372742, 37.239075 ], [ -81.973114, 37.536955 ] ], [ [ -82.589722, 38.415938 ], [ -82.776489, 38.511639 ], [ -82.856140, 38.652271 ], [ -83.045654, 38.635109 ], [ -83.259888, 38.580379 ], [ -83.435669, 38.637255 ], [ -83.673248, 38.609359 ], [ -83.827057, 38.690869 ], [ -84.039917, 38.761580 ], [ -84.304962, 38.987168 ], [ -84.462891, 39.073578 ] ], [ [ -81.973114, 37.536955 ], [ -81.929169, 37.366883 ], [ -81.816559, 37.276238 ], [ -81.664124, 37.195331 ], [ -81.348267, 37.316660 ], [ -81.228790, 37.245635 ], [ -80.855255, 37.329765 ], [ -80.833282, 37.419254 ], [ -80.720673, 37.383253 ], [ -80.597076, 37.456328 ], [ -80.457001, 37.442155 ], [ -80.299072, 37.519529 ], [ -80.277100, 37.610968 ], [ -80.293579, 37.728366 ], [ -80.157623, 37.901949 ], [ -79.965363, 38.031867 ], [ -79.915924, 38.179910 ], [ -79.744263, 38.357811 ], [ -79.648132, 38.575011 ], [ -79.516296, 38.497668 ], [ -79.366608, 38.426698 ], [ -79.223785, 38.465418 ], [ -79.175720, 38.555683 ], [ -78.965607, 38.822591 ], [ -78.892822, 38.780852 ], [ -78.745880, 38.909202 ], [ -78.662109, 38.965816 ] ], [ [ -80.520172, 40.642094 ], [ -80.520172, 41.046217 ] ], [ [ -79.477844, 39.720920 ], [ -78.662109, 39.720920 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.463135, 41.694450 ], [ -83.840790, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -79.760742, 42.238685 ], [ -79.760742, 42.000325 ], [ -78.662109, 42.000325 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -78.554993, 33.862433 ], [ -78.837891, 34.102708 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724152, 39.322612 ], [ -77.835388, 39.135386 ], [ -78.346252, 39.406489 ], [ -78.424530, 39.139647 ], [ -78.549500, 39.040520 ], [ -78.745880, 38.909202 ], [ -78.837891, 38.829010 ] ], [ [ -77.724152, 39.322612 ], [ -77.802429, 39.449980 ], [ -77.924652, 39.592990 ], [ -78.233643, 39.672313 ], [ -78.425903, 39.597223 ], [ -78.534393, 39.523111 ], [ -78.829651, 39.563353 ], [ -78.837891, 39.557001 ] ], [ [ -77.119904, 38.934844 ], [ -77.037506, 38.849334 ], [ -77.041626, 38.790486 ], [ -77.059479, 38.709089 ], [ -77.229767, 38.614724 ], [ -77.343750, 38.392263 ], [ -77.211914, 38.337348 ], [ -77.048492, 38.381498 ], [ -76.990814, 38.240337 ] ], [ [ -75.406036, 39.795876 ], [ -75.554352, 39.691337 ], [ -75.528259, 39.498742 ] ], [ [ -73.913269, 40.960197 ], [ -74.080811, 41.046217 ] ], [ [ -75.688934, 37.932284 ], [ -75.610657, 38.000491 ], [ -75.378571, 38.015640 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.841614, 41.427283 ], [ -75.011902, 41.496235 ], [ -75.076447, 41.642131 ], [ -75.048981, 41.751849 ], [ -75.168457, 41.841943 ], [ -75.386810, 41.999305 ], [ -76.744995, 42.001346 ], [ -78.837891, 42.000325 ] ], [ [ -74.679565, 41.356196 ], [ -74.801788, 41.311855 ], [ -74.976196, 41.088667 ], [ -75.136871, 41.000630 ], [ -75.101166, 40.913513 ] ], [ [ -73.282928, 42.743987 ], [ -73.498535, 42.055411 ], [ -73.554840, 41.290190 ], [ -73.475189, 41.205523 ], [ -73.693542, 41.108330 ], [ -73.657837, 40.985082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -71.505890, 45.008506 ], [ -71.621246, 44.736003 ], [ -71.547089, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.810760, 44.352332 ], [ -72.004395, 44.304196 ], [ -72.037354, 44.206819 ], [ -72.059326, 44.046142 ], [ -72.178802, 43.808765 ], [ -72.261200, 43.721490 ], [ -72.371063, 43.522663 ], [ -72.404022, 43.286203 ], [ -72.435608, 43.223191 ], [ -72.458954, 42.961448 ], [ -72.538605, 42.831667 ], [ -72.457581, 42.727848 ], [ -73.212891, 42.742978 ] ], [ [ -71.801147, 42.013591 ], [ -71.379547, 42.024814 ], [ -71.305389, 41.763117 ], [ -71.148834, 41.648288 ], [ -71.121368, 41.495207 ] ], [ [ -71.801147, 42.013591 ], [ -71.794281, 41.467428 ], [ -71.854706, 41.320107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -71.073303, 45.286482 ], [ -71.055450, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 19, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.214172, 41.999815 ], [ -123.706055, 41.999815 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 19, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.984146, 46.268664 ], [ -123.776779, 46.282428 ], [ -123.706055, 46.281953 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.893555, 41.994712 ], [ -123.793945, 41.999815 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.893555, 45.663966 ], [ -121.047363, 45.637567 ], [ -121.203918, 45.690353 ], [ -121.561661, 45.733025 ], [ -121.788254, 45.701384 ], [ -122.175522, 45.595303 ], [ -122.420654, 45.592420 ], [ -122.652054, 45.630365 ], [ -122.726212, 45.770397 ], [ -122.752304, 45.938258 ], [ -122.938385, 46.129412 ], [ -123.228836, 46.186486 ], [ -123.471909, 46.277682 ], [ -123.776779, 46.282428 ], [ -123.793945, 46.281479 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 21, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.081055, 37.620214 ], [ -118.114700, 37.644685 ], [ -119.805222, 38.856820 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 21, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.709091, 38.788345 ], [ -120.000229, 38.995707 ], [ -120.000229, 41.013066 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 21, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.999542, 41.992671 ], [ -120.981445, 41.994712 ] ], [ [ -119.999542, 41.992671 ], [ -118.081055, 41.996243 ] ], [ [ -119.999542, 41.992671 ], [ -120.000229, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 21, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.081055, 45.996485 ], [ -118.978500, 45.992668 ], [ -119.337616, 45.888574 ], [ -119.592361, 45.932528 ], [ -119.787369, 45.850804 ], [ -120.158844, 45.740693 ], [ -120.609970, 45.754110 ], [ -120.837250, 45.673083 ], [ -120.981445, 45.649088 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -115.268555, 35.529432 ], [ -116.321182, 36.322317 ], [ -116.740723, 36.633162 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -116.645279, 36.562600 ], [ -118.114700, 37.644685 ], [ -118.168945, 37.684364 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.028427, 42.000325 ], [ -117.028427, 41.997774 ], [ -118.168945, 41.996753 ] ], [ [ -117.028427, 42.000325 ], [ -117.020187, 43.100983 ] ], [ [ -117.028427, 42.000325 ], [ -115.268555, 41.996243 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.020187, 43.036776 ], [ -117.014008, 43.797367 ], [ -116.926804, 44.081666 ], [ -117.007828, 44.211741 ], [ -117.194595, 44.279621 ], [ -117.192535, 44.439173 ], [ -117.051773, 44.666211 ], [ -116.836166, 44.864143 ], [ -116.723557, 45.120053 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 46.000301 ], [ -118.168945, 45.996008 ] ], [ [ -116.915131, 46.000301 ], [ -116.906891, 46.177929 ], [ -116.998215, 46.330336 ], [ -117.014008, 47.070122 ] ], [ [ -116.915131, 46.000301 ], [ -116.679611, 45.807743 ], [ -116.511383, 45.726794 ], [ -116.457825, 45.574639 ], [ -116.559448, 45.444717 ], [ -116.693344, 45.186876 ], [ -116.751022, 45.058001 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.012634, 47.010226 ], [ -117.027054, 47.723159 ], [ -117.031860, 48.951366 ] ], [ [ -115.268555, 47.232625 ], [ -115.288467, 47.250805 ], [ -115.519180, 47.345337 ], [ -115.705261, 47.505142 ], [ -115.704575, 47.685268 ], [ -115.968246, 47.950846 ], [ -116.045151, 48.951366 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 22, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.031860, 48.999592 ], [ -117.031860, 48.893615 ] ], [ [ -116.048584, 49.000493 ], [ -116.041031, 48.893615 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.722672, 32.717399 ], [ -114.590149, 32.716822 ], [ -114.480286, 32.916485 ], [ -114.656067, 33.054141 ], [ -114.691772, 33.204222 ], [ -114.743958, 33.380426 ], [ -114.548950, 33.610045 ], [ -114.469299, 34.067450 ], [ -114.166489, 34.273106 ], [ -114.235840, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.053608 ], [ -115.356445, 35.595902 ] ], [ [ -114.642334, 35.053608 ], [ -114.581223, 35.249544 ], [ -114.630661, 35.445568 ], [ -114.651260, 35.639441 ], [ -114.650574, 35.854553 ], [ -114.739838, 35.991341 ], [ -114.671860, 36.115135 ], [ -114.461060, 36.115135 ], [ -114.269485, 36.044102 ], [ -114.132843, 36.004118 ], [ -114.066925, 36.156727 ], [ -114.023666, 36.189984 ], [ -114.027786, 36.633162 ] ], [ [ -114.642334, 35.053608 ], [ -114.622421, 34.964185 ], [ -114.567490, 34.828459 ], [ -114.485092, 34.653545 ], [ -114.355316, 34.464674 ], [ -114.166489, 34.273106 ], [ -114.169922, 34.270836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.030533, 36.994327 ], [ -114.032593, 38.856820 ] ], [ [ -114.030533, 36.994327 ], [ -112.456055, 37.009681 ] ], [ [ -114.030533, 36.994327 ], [ -114.027786, 36.562600 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.032593, 38.788345 ], [ -114.034653, 41.013066 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.034653, 41.993181 ], [ -115.356445, 41.996753 ] ], [ [ -114.034653, 41.993181 ], [ -112.456055, 41.998284 ] ], [ [ -114.034653, 41.993181 ], [ -114.034653, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -112.456055, 44.473481 ], [ -112.690201, 44.498954 ], [ -112.874908, 44.360188 ], [ -113.052750, 44.620288 ], [ -113.174973, 44.765749 ], [ -113.378906, 44.790120 ], [ -113.440018, 44.863170 ], [ -113.502502, 45.120053 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -113.487396, 45.058001 ], [ -113.503189, 45.124413 ], [ -113.680344, 45.249271 ], [ -113.795013, 45.565025 ], [ -113.914490, 45.702823 ], [ -114.036026, 45.730150 ], [ -114.138336, 45.589537 ], [ -114.335403, 45.470725 ], [ -114.513931, 45.569352 ], [ -114.524231, 45.825450 ], [ -114.407501, 45.890008 ], [ -114.491959, 46.147492 ], [ -114.394455, 46.410405 ], [ -114.284592, 46.631993 ], [ -114.586029, 46.641423 ], [ -114.843521, 46.786427 ], [ -115.099640, 47.070122 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 23, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -115.045395, 47.010226 ], [ -115.122299, 47.095370 ], [ -115.288467, 47.250805 ], [ -115.356445, 47.278763 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 24, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.643555, 37.003649 ], [ -110.496368, 37.007488 ], [ -112.418289, 37.009681 ], [ -112.543945, 37.009133 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 24, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.894180, 41.013066 ], [ -109.643555, 41.009957 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 24, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.050491, 42.001856 ], [ -112.543945, 41.998284 ] ], [ [ -111.050491, 42.001856 ], [ -111.050491, 43.100983 ] ], [ [ -111.050491, 42.001856 ], [ -111.054611, 41.028089 ], [ -109.643555, 41.009957 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 24, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.085510, 44.506300 ], [ -111.194687, 44.561610 ], [ -111.292191, 44.701850 ], [ -111.400681, 44.729174 ], [ -111.542816, 44.530780 ], [ -111.772156, 44.498464 ], [ -112.336578, 44.561120 ], [ -112.362671, 44.462701 ], [ -112.543945, 44.483280 ] ], [ [ -111.085510, 44.506300 ], [ -111.067657, 44.542037 ], [ -111.071777, 45.049755 ], [ -109.643555, 45.055091 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.488178 ], [ -111.050491, 43.036776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.044113, 31.340149 ], [ -109.044800, 31.989442 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.045486, 31.914868 ], [ -109.045486, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.045486, 34.270836 ], [ -109.045486, 36.633162 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.045486, 37.000359 ], [ -109.731445, 37.004198 ] ], [ [ -109.045486, 37.000359 ], [ -109.049606, 38.856820 ] ], [ [ -109.045486, 37.000359 ], [ -106.831055, 36.999811 ] ], [ [ -109.045486, 37.000359 ], [ -109.045486, 36.562600 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.049606, 38.788345 ], [ -109.053726, 41.002184 ], [ -109.731445, 41.010993 ] ], [ [ -109.053726, 41.002184 ], [ -106.831055, 41.003221 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.053726, 41.002184 ], [ -109.731445, 41.010993 ] ], [ [ -109.053726, 41.002184 ], [ -106.831055, 41.003221 ] ], [ [ -109.053726, 41.002184 ], [ -109.053726, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 25, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.831055, 45.048785 ], [ -107.547226, 45.046359 ], [ -109.102478, 45.057031 ], [ -109.731445, 45.055091 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.507645, 31.754445 ], [ -106.619568, 31.914285 ], [ -106.629868, 31.989442 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.620255, 31.914868 ], [ -106.630554, 31.999342 ], [ -105.730362, 31.999342 ], [ -104.018555, 31.999342 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.018555, 36.996520 ], [ -104.200516, 36.996520 ], [ -105.899963, 36.997617 ], [ -106.918945, 36.999811 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.046021, 41.013066 ], [ -104.045334, 41.004257 ], [ -106.918945, 41.003739 ] ], [ [ -104.045334, 41.004257 ], [ -104.018555, 41.004257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.052887, 43.000630 ], [ -104.054260, 43.100983 ] ], [ [ -104.052887, 43.000630 ], [ -104.045334, 41.004257 ] ], [ [ -104.052887, 43.000630 ], [ -104.018555, 43.000630 ] ], [ [ -104.045334, 41.004257 ], [ -106.918945, 41.003739 ] ], [ [ -104.045334, 41.004257 ], [ -104.018555, 41.004257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.078293, 45.041023 ], [ -105.746155, 45.051210 ], [ -106.918945, 45.048785 ] ], [ [ -104.078293, 45.041023 ], [ -104.074860, 45.120053 ] ], [ [ -104.078293, 45.041023 ], [ -104.053574, 43.036776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.058001 ], [ -104.026794, 45.956878 ], [ -104.073486, 47.070122 ] ], [ [ -104.026794, 45.956878 ], [ -104.018555, 45.957356 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.071426, 47.010226 ], [ -104.077606, 47.171978 ], [ -104.093399, 48.951366 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.093399, 49.005898 ], [ -104.093399, 48.893615 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -103.001633, 34.343436 ], [ -103.001633, 33.880107 ], [ -103.001633, 31.999342 ], [ -103.929977, 31.999342 ], [ -104.106445, 31.999342 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -103.001633, 36.499701 ], [ -103.003006, 36.633162 ] ], [ [ -103.001633, 36.499701 ], [ -101.206055, 36.499701 ] ], [ [ -103.001633, 36.499701 ], [ -103.001633, 34.270836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -103.003693, 36.995424 ], [ -104.106445, 36.996520 ] ], [ [ -103.003693, 36.995424 ], [ -103.003006, 36.562600 ] ], [ [ -103.003693, 36.995424 ], [ -102.041702, 36.992133 ], [ -102.040329, 38.460041 ], [ -102.043076, 38.856820 ] ], [ [ -102.041702, 36.992133 ], [ -101.206055, 36.993230 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -102.050629, 40.001320 ], [ -102.048569, 41.004257 ], [ -104.045334, 41.004257 ] ], [ [ -102.050629, 40.001320 ], [ -101.206055, 40.001320 ] ], [ [ -102.050629, 40.001320 ], [ -102.043076, 38.788345 ] ], [ [ -104.046021, 41.013066 ], [ -104.045334, 41.004257 ], [ -104.106445, 41.004257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.052887, 43.000630 ], [ -104.054260, 43.100983 ] ], [ [ -104.052887, 43.000630 ], [ -101.206055, 43.000630 ] ], [ [ -104.052887, 43.000630 ], [ -104.045334, 41.004257 ], [ -104.106445, 41.004257 ] ], [ [ -104.045334, 41.004257 ], [ -102.048569, 41.004257 ], [ -102.049942, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.053574, 43.036776 ], [ -104.078293, 45.041023 ] ], [ [ -104.106445, 45.041508 ], [ -104.078293, 45.041023 ], [ -104.074860, 45.120053 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.026794, 45.956878 ], [ -104.073486, 47.070122 ] ], [ [ -104.026794, 45.956878 ], [ -104.077606, 45.058001 ] ], [ [ -104.026794, 45.956878 ], [ -101.206055, 45.964038 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.071426, 47.010226 ], [ -104.077606, 47.171978 ], [ -104.093399, 48.951366 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 27, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.093399, 49.005898 ], [ -104.093399, 48.893615 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -98.393555, 34.119195 ], [ -98.554230, 34.110668 ], [ -98.852234, 34.164659 ], [ -99.188004, 34.235648 ], [ -99.265594, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -99.213409, 34.270836 ], [ -99.336319, 34.443159 ], [ -99.599304, 34.376312 ], [ -99.762039, 34.457880 ], [ -100.000305, 34.565383 ], [ -100.000305, 35.519932 ], [ -100.000305, 36.499701 ], [ -101.001434, 36.499701 ], [ -101.293945, 36.499701 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -98.393555, 36.996520 ], [ -99.100113, 36.995424 ], [ -100.100555, 36.994327 ], [ -101.100311, 36.993230 ], [ -101.293945, 36.993230 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -98.393555, 40.001846 ], [ -99.000549, 40.001320 ], [ -100.300369, 40.001320 ], [ -101.293945, 40.001320 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -98.393555, 42.902125 ], [ -98.594742, 43.000630 ], [ -100.599747, 43.000630 ], [ -101.293945, 43.000630 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -98.393555, 45.964993 ], [ -98.442307, 45.963561 ], [ -100.066910, 45.965947 ], [ -101.293945, 45.964515 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -95.581055, 33.876117 ], [ -95.769882, 33.881247 ], [ -95.977936, 33.879537 ], [ -96.148911, 33.797979 ], [ -96.316452, 33.756315 ], [ -96.463394, 33.805397 ], [ -96.797104, 33.751748 ], [ -96.948166, 33.918292 ], [ -97.104721, 33.774011 ], [ -97.376633, 33.838483 ], [ -97.657471, 33.994042 ], [ -97.957535, 33.893787 ], [ -98.088684, 34.134542 ], [ -98.481445, 34.114647 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -95.581055, 36.999262 ], [ -97.300415, 36.997617 ], [ -98.481445, 36.996520 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.584235 ], [ -95.862579, 40.764941 ], [ -95.834427, 40.944120 ], [ -95.844040, 41.013066 ] ], [ [ -95.796661, 40.584235 ], [ -95.776749, 40.501792 ], [ -95.608521, 40.343404 ], [ -95.581055, 40.321420 ] ], [ [ -95.796661, 40.584235 ], [ -95.581055, 40.584235 ] ], [ [ -95.581055, 40.001846 ], [ -98.481445, 40.001846 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.455841, 42.489315 ], [ -96.623383, 42.502984 ], [ -96.709213, 42.551057 ], [ -96.754532, 42.634464 ], [ -97.028503, 42.717759 ], [ -97.287369, 42.846269 ], [ -97.644424, 42.836199 ], [ -97.882004, 42.840227 ], [ -97.968521, 42.794393 ], [ -98.336563, 42.873951 ], [ -98.481445, 42.945366 ] ], [ [ -96.455841, 42.489315 ], [ -96.453781, 42.580894 ], [ -96.615829, 42.692025 ], [ -96.535492, 42.855833 ], [ -96.483994, 43.016195 ], [ -96.465454, 43.100983 ] ], [ [ -96.455841, 42.489315 ], [ -96.410522, 42.389487 ], [ -96.347351, 42.224450 ], [ -96.349411, 42.142023 ], [ -96.167450, 41.953873 ], [ -96.104965, 41.788209 ], [ -96.097412, 41.556894 ], [ -96.025314, 41.524516 ], [ -95.958710, 41.405141 ], [ -95.856400, 41.116607 ], [ -95.835114, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.453094, 43.502247 ], [ -96.440048, 44.436231 ], [ -96.527252, 45.120053 ] ], [ [ -96.453094, 43.502247 ], [ -95.581055, 43.501251 ] ], [ [ -96.453094, 43.502247 ], [ -96.586304, 43.501251 ], [ -96.587677, 43.257706 ], [ -96.459961, 43.124542 ], [ -96.479874, 43.036776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.018423 ], [ -98.442307, 45.963561 ], [ -98.481445, 45.964038 ] ], [ [ -96.539612, 46.018423 ], [ -96.538925, 46.199795 ], [ -96.601410, 46.351667 ], [ -96.685867, 46.513516 ], [ -96.733932, 46.716798 ], [ -96.746292, 46.944637 ], [ -96.779938, 46.999456 ], [ -96.790237, 47.070122 ] ], [ [ -96.539612, 46.018423 ], [ -96.557465, 45.872800 ], [ -96.781311, 45.760817 ], [ -96.834869, 45.625563 ], [ -96.735992, 45.471207 ], [ -96.560898, 45.393146 ], [ -96.519012, 45.058001 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -96.781998, 47.010226 ], [ -96.820450, 47.292271 ], [ -96.825256, 47.426694 ], [ -96.844482, 47.546408 ], [ -96.894608, 47.749020 ], [ -97.015457, 47.954525 ], [ -97.131500, 48.137683 ], [ -97.148666, 48.318821 ], [ -97.161713, 48.514785 ], [ -97.127380, 48.642437 ], [ -97.120514, 48.758905 ], [ -97.214584, 48.902643 ], [ -97.222137, 48.951366 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 29, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -97.229004, 49.000943 ], [ -97.214584, 48.902643 ], [ -97.209091, 48.893615 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -93.836975, 29.689842 ], [ -93.918686, 29.822178 ], [ -93.817062, 29.968617 ], [ -93.667374, 30.101178 ], [ -93.664627, 30.300575 ], [ -93.738098, 30.366951 ], [ -93.650208, 30.606004 ], [ -93.586349, 30.714094 ], [ -93.490219, 31.079989 ], [ -93.578796, 31.216325 ], [ -93.694153, 31.443895 ], [ -93.779984, 31.675590 ], [ -93.834915, 31.830316 ], [ -93.999023, 31.942840 ], [ -94.002457, 31.989442 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.480362, 33.636346 ], [ -94.910202, 33.832209 ], [ -95.191040, 33.938233 ], [ -95.418320, 33.870416 ], [ -95.668945, 33.878397 ] ], [ [ -94.480362, 33.636346 ], [ -94.457703, 34.343436 ] ], [ [ -94.480362, 33.636346 ], [ -94.428177, 33.570578 ], [ -94.233856, 33.583735 ], [ -94.002457, 33.580303 ], [ -94.060135, 33.012694 ], [ -93.094711, 33.010967 ], [ -92.768555, 33.021330 ] ], [ [ -94.060135, 33.012694 ], [ -93.999023, 31.942840 ], [ -93.958511, 31.914868 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.628677, 36.541088 ], [ -94.627304, 36.633162 ] ], [ [ -94.628677, 36.541088 ], [ -93.412628, 36.526743 ], [ -92.768555, 36.525639 ] ], [ [ -94.628677, 36.541088 ], [ -94.430237, 35.483597 ], [ -94.451523, 34.511083 ], [ -94.459763, 34.270836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.623184, 37.000359 ], [ -95.668945, 36.999262 ] ], [ [ -94.623184, 37.000359 ], [ -94.615631, 38.069176 ], [ -94.608078, 38.856820 ] ], [ [ -94.623184, 37.000359 ], [ -94.617691, 37.000359 ], [ -94.628677, 36.562600 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.323563, 40.001846 ], [ -95.668945, 40.001846 ] ], [ [ -95.323563, 40.001846 ], [ -95.452652, 40.215587 ], [ -95.608521, 40.343404 ], [ -95.668945, 40.400425 ] ], [ [ -95.323563, 40.001846 ], [ -95.085983, 39.868115 ], [ -94.955521, 39.870223 ], [ -94.926682, 39.725145 ], [ -95.067444, 39.540058 ], [ -94.991226, 39.444678 ], [ -94.868317, 39.234912 ], [ -94.605331, 39.140180 ], [ -94.608765, 38.788345 ] ], [ [ -92.768555, 40.594664 ], [ -92.852325, 40.592578 ], [ -94.002457, 40.585278 ], [ -94.898529, 40.583714 ], [ -95.668945, 40.584235 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -92.768555, 44.981799 ], [ -92.796707, 44.776474 ], [ -92.768555, 44.757949 ] ], [ [ -92.768555, 43.519178 ], [ -94.001083, 43.513701 ], [ -95.359955, 43.500254 ], [ -95.668945, 43.501251 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.768555, 45.876146 ], [ -92.900391, 45.706179 ], [ -92.768555, 45.589537 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.956055, 31.015279 ], [ -90.701752, 31.015867 ], [ -91.584091, 31.047640 ], [ -91.624603, 31.297328 ], [ -91.502380, 31.408740 ], [ -91.411743, 31.650459 ], [ -91.321793, 31.860063 ], [ -91.162491, 31.989442 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.156311, 33.010391 ], [ -92.001572, 33.044357 ], [ -92.856445, 33.018452 ] ], [ [ -91.156311, 33.010391 ], [ -91.108246, 33.207095 ], [ -91.223602, 33.469826 ], [ -91.200943, 33.706634 ], [ -90.982590, 34.055504 ], [ -90.876846, 34.261757 ], [ -90.771103, 34.343436 ] ], [ [ -91.156311, 33.010391 ], [ -91.084900, 32.953368 ], [ -91.176224, 32.808630 ], [ -91.031342, 32.602940 ], [ -91.072540, 32.479067 ], [ -90.943451, 32.306867 ], [ -91.082153, 32.204667 ], [ -91.128845, 32.016227 ], [ -91.254501, 31.914868 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.249252, 35.021000 ], [ -89.956055, 35.021562 ] ], [ [ -90.249252, 35.021000 ], [ -90.135269, 35.114292 ], [ -90.147629, 35.405282 ], [ -89.989014, 35.536696 ], [ -89.956055, 35.678494 ] ], [ [ -90.249252, 35.021000 ], [ -90.268478, 34.941674 ], [ -90.447006, 34.867342 ], [ -90.450439, 34.721862 ], [ -90.584335, 34.454483 ], [ -90.699692, 34.397845 ], [ -90.865173, 34.270836 ] ], [ [ -89.956055, 36.023557 ], [ -90.315857, 36.023557 ], [ -90.254059, 36.122901 ], [ -90.029526, 36.338359 ], [ -90.112610, 36.462159 ], [ -91.251755, 36.523432 ], [ -92.307816, 36.523984 ], [ -92.856445, 36.525639 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.956055, 37.970185 ], [ -90.030212, 37.972350 ], [ -90.228653, 38.113490 ], [ -90.370102, 38.264063 ], [ -90.305557, 38.439607 ], [ -90.212860, 38.585210 ], [ -90.156555, 38.769610 ], [ -90.260239, 38.856820 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.430969, 40.369043 ], [ -91.567612, 40.452695 ], [ -91.758499, 40.614474 ], [ -92.856445, 40.592578 ] ], [ [ -91.430969, 40.369043 ], [ -91.410370, 40.551374 ], [ -91.154251, 40.699902 ], [ -91.087646, 40.851735 ], [ -90.966797, 41.013066 ] ], [ [ -91.430969, 40.369043 ], [ -91.518173, 40.120090 ], [ -91.428223, 39.821194 ], [ -91.262741, 39.615210 ], [ -91.071854, 39.445208 ], [ -90.841827, 39.310925 ], [ -90.749817, 39.265753 ], [ -90.666046, 39.075177 ], [ -90.650253, 38.907599 ], [ -90.535583, 38.865909 ], [ -90.346756, 38.930571 ], [ -90.179214, 38.788345 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.641327, 42.505515 ], [ -90.738831, 42.658707 ], [ -91.064987, 42.754575 ], [ -91.129532, 42.913189 ], [ -91.170044, 43.002639 ], [ -91.172104, 43.100983 ] ], [ [ -90.641327, 42.505515 ], [ -89.956055, 42.505515 ] ], [ [ -90.641327, 42.505515 ], [ -90.582962, 42.429539 ], [ -90.464859, 42.378836 ], [ -90.417480, 42.270704 ], [ -90.260239, 42.190373 ], [ -90.157242, 42.103827 ], [ -90.210114, 41.835293 ], [ -90.395508, 41.608768 ], [ -90.462112, 41.536852 ], [ -90.690765, 41.479261 ], [ -91.034088, 41.429857 ], [ -91.124039, 41.257678 ], [ -90.999069, 41.180204 ], [ -90.957184, 41.024981 ], [ -91.016922, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.228409, 43.501251 ], [ -92.540588, 43.520174 ], [ -92.856445, 43.519178 ] ], [ [ -91.228409, 43.501251 ], [ -91.255188, 43.614205 ], [ -91.257935, 43.854831 ], [ -91.290207, 43.937462 ], [ -91.628036, 44.085612 ], [ -91.880035, 44.257495 ], [ -91.950073, 44.365097 ], [ -92.062683, 44.432799 ], [ -92.386093, 44.575307 ], [ -92.505569, 44.584110 ], [ -92.796707, 44.776474 ], [ -92.766495, 44.996368 ], [ -92.766495, 45.120053 ] ], [ [ -91.228409, 43.501251 ], [ -91.213989, 43.446937 ], [ -91.084213, 43.288202 ], [ -91.173477, 43.212683 ], [ -91.170731, 43.036776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.396881, 46.576327 ], [ -90.335083, 46.597090 ], [ -90.334396, 46.593788 ], [ -90.177155, 46.561221 ], [ -90.096817, 46.381044 ], [ -89.956055, 46.353089 ] ], [ [ -92.766495, 45.058001 ], [ -92.765808, 45.267155 ], [ -92.689590, 45.518857 ], [ -92.856445, 45.667325 ] ], [ [ -92.856445, 45.763212 ], [ -92.757568, 45.890008 ], [ -92.296829, 46.096567 ], [ -92.265244, 46.095615 ], [ -92.275543, 46.656506 ], [ -92.012558, 46.712090 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.605179, 30.176593 ], [ -89.623718, 30.275672 ], [ -89.658737, 30.440978 ], [ -89.790573, 30.556940 ], [ -89.854431, 30.683392 ], [ -89.787827, 30.847416 ], [ -89.759674, 31.013514 ], [ -90.043945, 31.015279 ] ], [ [ -88.417969, 30.385315 ], [ -88.449554, 31.912536 ], [ -88.442001, 31.989442 ] ], [ [ -87.530823, 30.274486 ], [ -87.458038, 30.411374 ], [ -87.405167, 30.608959 ], [ -87.633133, 30.851542 ], [ -87.617340, 30.928145 ], [ -87.143555, 30.975843 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -88.449554, 31.914868 ], [ -88.273773, 33.510484 ], [ -88.159790, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.498749, 36.506325 ], [ -89.274216, 36.611670 ], [ -89.233704, 36.633162 ] ], [ [ -89.498749, 36.506325 ], [ -89.524841, 36.409679 ], [ -89.585266, 36.267529 ], [ -89.663544, 36.023557 ], [ -89.673843, 35.940212 ], [ -89.775467, 35.799437 ], [ -89.950562, 35.701917 ], [ -89.989014, 35.536696 ], [ -90.043945, 35.491425 ] ], [ [ -88.167343, 35.000191 ], [ -89.264603, 35.021562 ], [ -90.043945, 35.021562 ] ], [ [ -88.167343, 35.000191 ], [ -87.143555, 35.000191 ] ], [ [ -88.167343, 35.000191 ], [ -88.095932, 34.806474 ], [ -88.170090, 34.270836 ] ], [ [ -87.352295, 36.633162 ], [ -87.842560, 36.611118 ], [ -87.858353, 36.633162 ] ], [ [ -88.073273, 36.633162 ], [ -88.069839, 36.497493 ], [ -89.498749, 36.506325 ] ], [ [ -90.043945, 36.360481 ], [ -90.029526, 36.338359 ], [ -90.043945, 36.325084 ] ], [ [ -90.043945, 36.023557 ], [ -89.663544, 36.023557 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.103241, 36.952635 ], [ -89.280396, 37.107765 ], [ -89.388885, 37.081476 ], [ -89.516602, 37.327035 ], [ -89.479523, 37.477583 ], [ -89.554367, 37.719133 ], [ -89.655304, 37.749001 ], [ -89.916916, 37.968561 ], [ -90.030212, 37.972350 ], [ -90.043945, 37.982634 ] ], [ [ -89.103241, 36.952635 ], [ -89.134827, 36.852153 ], [ -89.115601, 36.694851 ], [ -89.274216, 36.611670 ], [ -89.379272, 36.562600 ] ], [ [ -89.103241, 36.952635 ], [ -89.141693, 37.103932 ], [ -89.074402, 37.200800 ], [ -88.807983, 37.146635 ], [ -88.566971, 37.054081 ], [ -88.435822, 37.136782 ], [ -88.474274, 37.355422 ], [ -88.247681, 37.438884 ], [ -88.071899, 37.511905 ], [ -88.157730, 37.606072 ], [ -88.044434, 37.745200 ], [ -88.051300, 37.820090 ], [ -88.019028, 38.022131 ], [ -87.878952, 38.291014 ], [ -87.671585, 38.508953 ], [ -87.598801, 38.674253 ], [ -87.515717, 38.735339 ], [ -87.508850, 38.856820 ] ], [ [ -88.051300, 37.820090 ], [ -87.921524, 37.794050 ], [ -87.911911, 37.904658 ], [ -87.653732, 37.826599 ], [ -87.439499, 37.936075 ], [ -87.143555, 37.789709 ] ], [ [ -88.071899, 36.562600 ], [ -88.073273, 36.654649 ], [ -87.874832, 36.656852 ], [ -87.842560, 36.611118 ], [ -87.217026, 36.639223 ], [ -87.143555, 36.638672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.512970, 38.788345 ], [ -87.507477, 38.869652 ], [ -87.560349, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528763, 39.392693 ], [ -87.527390, 40.550331 ], [ -87.527390, 41.013066 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.806854, 42.494378 ], [ -88.576584, 42.503490 ], [ -89.620285, 42.505515 ], [ -90.043945, 42.505515 ] ], [ [ -87.521896, 41.708804 ], [ -87.526703, 41.708804 ], [ -87.527390, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.627640, 45.120053 ], [ -87.614594, 45.108908 ], [ -87.613220, 45.110846 ], [ -87.598114, 45.106485 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.598114, 45.106485 ], [ -87.613220, 45.110846 ], [ -87.614594, 45.108908 ], [ -87.747803, 45.227030 ], [ -87.673645, 45.387842 ], [ -87.894058, 45.397004 ], [ -87.848053, 45.559256 ], [ -87.787628, 45.639968 ], [ -87.875519, 45.779975 ], [ -88.112411, 45.843629 ], [ -88.167343, 46.007932 ], [ -88.362350, 46.020807 ], [ -88.644562, 46.022237 ], [ -89.221344, 46.202171 ], [ -90.043945, 46.371095 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -85.005341, 30.991148 ], [ -87.046051, 30.985262 ], [ -87.231445, 30.967012 ] ], [ [ -85.005341, 30.991148 ], [ -85.054779, 31.108801 ], [ -85.117950, 31.236289 ], [ -85.090485, 31.400535 ], [ -85.065765, 31.577365 ], [ -85.120010, 31.765537 ], [ -85.081558, 31.989442 ] ], [ [ -85.005341, 30.991148 ], [ -84.853592, 30.721768 ], [ -84.331055, 30.698745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -85.094604, 31.914868 ], [ -85.064392, 32.083738 ], [ -84.898911, 32.259265 ], [ -84.986801, 32.438511 ], [ -85.129623, 32.750900 ], [ -85.365829, 33.744897 ], [ -85.491486, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -85.626068, 34.986128 ], [ -86.910095, 34.999629 ], [ -87.231445, 35.000191 ] ], [ [ -85.626068, 34.986128 ], [ -84.854965, 34.977127 ], [ -84.331055, 34.987253 ] ], [ [ -85.626068, 34.986128 ], [ -85.475693, 34.270836 ] ], [ [ -84.331055, 36.568666 ], [ -84.350281, 36.567564 ], [ -85.231247, 36.610016 ], [ -85.519638, 36.597889 ], [ -86.092987, 36.625999 ], [ -86.600418, 36.633162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.331055, 36.568666 ], [ -84.350281, 36.567564 ], [ -85.231247, 36.610016 ], [ -85.519638, 36.597889 ], [ -86.092987, 36.625999 ], [ -86.678009, 36.634264 ], [ -87.217026, 36.639223 ], [ -87.231445, 36.638672 ] ], [ [ -84.800720, 38.856820 ], [ -84.800034, 38.855216 ], [ -84.843292, 38.781387 ], [ -85.012207, 38.779781 ], [ -85.168076, 38.691405 ], [ -85.404282, 38.727305 ], [ -85.426254, 38.535276 ], [ -85.567017, 38.462192 ], [ -85.698853, 38.290476 ], [ -85.840302, 38.259211 ], [ -86.060028, 37.960982 ], [ -86.262589, 38.047010 ], [ -86.325760, 38.169654 ], [ -86.500168, 37.970185 ], [ -86.610718, 37.859134 ], [ -86.825638, 37.976680 ], [ -87.056351, 37.881357 ], [ -87.131882, 37.783740 ], [ -87.231445, 37.833107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.824066, 39.106620 ], [ -84.810333, 40.773262 ], [ -84.810333, 41.013066 ] ], [ [ -84.824066, 39.106620 ], [ -84.481430, 39.083705 ], [ -84.331055, 39.001577 ] ], [ [ -84.824066, 39.106620 ], [ -84.881744, 39.059716 ], [ -84.800034, 38.855216 ], [ -84.839859, 38.788345 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -86.824951, 41.761069 ], [ -86.824951, 41.756459 ], [ -85.748291, 41.751336 ], [ -84.807587, 41.756459 ], [ -84.806900, 41.678041 ], [ -84.331055, 41.685220 ] ], [ [ -84.806900, 41.678041 ], [ -84.810333, 40.946714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.518555, 30.732983 ], [ -81.701889, 30.748917 ], [ -81.899643, 30.822064 ], [ -82.020493, 30.788447 ], [ -82.023239, 30.440386 ], [ -82.152328, 30.350954 ], [ -82.226486, 30.525596 ], [ -83.848343, 30.675715 ], [ -84.418945, 30.702287 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.518555, 33.029390 ], [ -81.827545, 33.223754 ], [ -81.943588, 33.461807 ], [ -82.181168, 33.624912 ], [ -82.249832, 33.748893 ], [ -82.597961, 33.986072 ], [ -82.716751, 34.163523 ], [ -82.822495, 34.343436 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.321442, 34.987253 ], [ -84.418945, 34.986128 ] ], [ [ -84.321442, 34.987253 ], [ -84.298782, 35.199062 ], [ -84.087296, 35.261880 ], [ -84.017944, 35.369455 ], [ -83.876495, 35.490306 ], [ -83.673935, 35.517138 ], [ -83.438416, 35.562953 ], [ -83.209763, 35.649485 ], [ -83.110886, 35.737595 ], [ -82.920685, 35.817256 ], [ -82.926178, 35.890163 ], [ -82.674866, 36.025223 ], [ -82.593842, 35.937432 ], [ -82.224426, 36.126229 ], [ -82.052078, 36.106260 ], [ -81.897583, 36.274172 ], [ -81.694336, 36.317338 ], [ -81.705322, 36.460502 ], [ -81.679916, 36.585760 ] ], [ [ -84.321442, 34.987253 ], [ -83.076553, 34.979377 ], [ -82.976990, 35.009190 ], [ -82.437286, 35.180543 ], [ -81.518555, 35.172686 ] ], [ [ -83.076553, 34.979377 ], [ -83.186417, 34.896069 ], [ -83.346405, 34.706622 ], [ -83.076553, 34.540500 ], [ -82.902832, 34.479958 ], [ -82.779922, 34.270836 ] ], [ [ -81.679916, 36.585760 ], [ -82.186661, 36.566461 ], [ -83.673935, 36.600094 ] ], [ [ -81.679916, 36.585760 ], [ -81.518555, 36.581901 ] ], [ [ -83.673935, 36.600094 ], [ -84.350281, 36.567564 ], [ -84.418945, 36.571424 ] ], [ [ -83.673935, 36.600094 ], [ -83.505707, 36.633162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673935, 36.600094 ], [ -84.350281, 36.567564 ], [ -84.418945, 36.571424 ] ], [ [ -83.673935, 36.600094 ], [ -82.186661, 36.566461 ], [ -81.679916, 36.585760 ] ], [ [ -83.673935, 36.600094 ], [ -83.384857, 36.656852 ], [ -83.178864, 36.718522 ], [ -83.089600, 36.815881 ], [ -82.815628, 36.935074 ], [ -82.709198, 37.040380 ], [ -82.685165, 37.121454 ], [ -82.372742, 37.238529 ], [ -81.973114, 37.536410 ] ], [ [ -82.589035, 38.415938 ], [ -82.341156, 38.441220 ], [ -82.210693, 38.579842 ], [ -82.194901, 38.801725 ], [ -82.159195, 38.856820 ] ], [ [ -82.589035, 38.415938 ], [ -82.775803, 38.511639 ], [ -82.855453, 38.651735 ], [ -83.044968, 38.634573 ], [ -83.259201, 38.579842 ], [ -83.434982, 38.637255 ], [ -83.673248, 38.609359 ], [ -83.827057, 38.690333 ], [ -84.039230, 38.761044 ], [ -84.151840, 38.856820 ] ], [ [ -82.589035, 38.415938 ], [ -82.570496, 38.320650 ], [ -82.580795, 38.113490 ], [ -82.462006, 37.957192 ], [ -82.413940, 37.805444 ], [ -82.267685, 37.675669 ], [ -82.167435, 37.554921 ], [ -81.973114, 37.536410 ], [ -81.928482, 37.366337 ], [ -81.815872, 37.275692 ], [ -81.664124, 37.195331 ], [ -81.518555, 37.251101 ] ], [ [ -81.679916, 36.585760 ], [ -81.518555, 36.581901 ] ], [ [ -81.679916, 36.585760 ], [ -81.685410, 36.562600 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.071503, 38.788345 ], [ -84.304962, 38.987168 ], [ -84.418945, 39.049585 ] ], [ [ -82.196274, 38.788345 ], [ -82.194901, 38.801725 ], [ -82.054138, 39.018650 ], [ -81.918869, 38.994106 ], [ -81.906509, 38.882481 ], [ -81.817245, 38.922024 ], [ -81.786346, 39.019717 ], [ -81.745148, 39.199802 ], [ -81.522675, 39.371995 ], [ -81.518555, 39.371464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -83.463135, 41.694450 ], [ -83.840103, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.418945, 41.684194 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.491089, 30.730032 ], [ -81.606445, 30.740655 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -80.865555, 32.033692 ], [ -81.036530, 32.084902 ], [ -81.128540, 32.121546 ], [ -81.126480, 32.312090 ], [ -81.225357, 32.499917 ], [ -81.411438, 32.609303 ], [ -81.377106, 32.682730 ], [ -81.436157, 32.793047 ], [ -81.507568, 33.021906 ], [ -81.606445, 33.084638 ] ], [ [ -78.706055, 33.991765 ], [ -79.122162, 34.343436 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -79.036331, 34.270836 ], [ -79.672852, 34.807602 ], [ -80.783844, 34.817749 ], [ -80.781097, 34.934356 ], [ -80.937653, 35.103619 ], [ -81.038589, 35.037305 ], [ -81.046143, 35.126086 ], [ -81.514435, 35.172124 ], [ -81.606445, 35.173247 ] ], [ [ -78.706055, 36.540536 ], [ -79.992828, 36.542191 ], [ -81.606445, 36.584106 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -80.783157, 36.562600 ], [ -81.606445, 36.584106 ] ], [ [ -78.805618, 38.856820 ], [ -78.892822, 38.780317 ], [ -78.965607, 38.822056 ], [ -79.175034, 38.555683 ], [ -79.223099, 38.464880 ], [ -79.366608, 38.426160 ], [ -79.515610, 38.497668 ], [ -79.648132, 38.575011 ], [ -79.744263, 38.357273 ], [ -79.915237, 38.179910 ], [ -79.964676, 38.031867 ], [ -80.157623, 37.901407 ], [ -80.293579, 37.728366 ], [ -80.277100, 37.610968 ], [ -80.298386, 37.519529 ], [ -80.457001, 37.442155 ], [ -80.596390, 37.456328 ], [ -80.720673, 37.383253 ], [ -80.833282, 37.418709 ], [ -80.855255, 37.329219 ], [ -81.228104, 37.245635 ], [ -81.348267, 37.316114 ], [ -81.606445, 37.217753 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -80.519485, 40.641573 ], [ -80.658188, 40.591014 ], [ -80.615616, 40.464189 ], [ -80.662308, 40.233936 ], [ -80.765305, 39.973437 ], [ -80.862122, 39.757880 ], [ -80.879288, 39.654341 ], [ -81.151199, 39.426647 ], [ -81.266556, 39.377834 ], [ -81.401138, 39.349697 ], [ -81.522675, 39.371995 ], [ -81.606445, 39.307206 ] ], [ [ -80.519485, 40.641573 ], [ -80.519485, 41.013066 ] ], [ [ -80.519485, 40.641573 ], [ -80.519485, 39.720920 ], [ -79.477844, 39.720920 ], [ -79.486084, 39.213635 ], [ -79.332962, 39.302956 ], [ -79.161301, 39.418690 ], [ -78.963547, 39.457933 ], [ -78.829651, 39.562824 ], [ -78.706055, 39.546941 ] ], [ [ -79.477844, 39.720920 ], [ -78.706055, 39.720920 ] ], [ [ -78.706055, 38.935912 ], [ -78.745193, 38.909202 ], [ -78.883896, 38.788345 ] ], [ [ -78.907242, 38.788345 ], [ -78.965607, 38.822056 ], [ -78.992386, 38.788345 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -80.516739, 41.957958 ], [ -80.519485, 40.946714 ] ], [ [ -79.760742, 42.238685 ], [ -79.760742, 42.000325 ], [ -78.706055, 42.000325 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -78.554306, 33.861863 ], [ -78.793945, 34.065743 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.893555, 36.551569 ], [ -76.941376, 36.546053 ], [ -78.000183, 36.537778 ], [ -78.793945, 36.539984 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.041626, 38.789951 ], [ -76.944122, 38.856820 ] ], [ [ -77.041626, 38.789951 ], [ -77.036819, 38.848799 ], [ -77.045059, 38.856820 ] ], [ [ -77.041626, 38.789951 ], [ -77.059479, 38.709089 ], [ -77.229767, 38.614724 ], [ -77.343750, 38.391724 ], [ -77.211227, 38.337348 ], [ -77.048492, 38.380960 ], [ -76.990128, 38.239798 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.723465, 39.322612 ], [ -77.835388, 39.134854 ], [ -78.346252, 39.405958 ], [ -78.424530, 39.139647 ], [ -78.549500, 39.039986 ], [ -78.745193, 38.909202 ], [ -78.793945, 38.866979 ] ], [ [ -77.723465, 39.322612 ], [ -77.801743, 39.449980 ], [ -77.923965, 39.592990 ], [ -78.232956, 39.672313 ], [ -78.425217, 39.596694 ], [ -78.534393, 39.522581 ], [ -78.793945, 39.558059 ] ], [ [ -77.723465, 39.322612 ], [ -77.576523, 39.288608 ], [ -77.444000, 39.213635 ], [ -77.517471, 39.106087 ], [ -77.305984, 39.045853 ], [ -77.119904, 38.934310 ], [ -77.036819, 38.848799 ], [ -77.041626, 38.789951 ] ], [ [ -77.119904, 38.934310 ], [ -77.038879, 38.982364 ], [ -76.911850, 38.878740 ], [ -77.041626, 38.789951 ], [ -77.042313, 38.788345 ] ], [ [ -75.893555, 39.723560 ], [ -76.668777, 39.720920 ], [ -77.523651, 39.725673 ], [ -78.550186, 39.719863 ], [ -78.793945, 39.720392 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.893555, 42.000325 ], [ -76.744308, 42.000835 ], [ -78.200684, 42.000325 ], [ -78.793945, 42.000325 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.868149, 36.551569 ], [ -75.981445, 36.551017 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.688248, 37.932284 ], [ -75.609970, 38.000491 ], [ -75.377884, 38.015640 ] ], [ [ -75.048981, 38.449287 ], [ -75.715027, 38.449825 ], [ -75.738373, 38.856820 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.787811, 39.723560 ], [ -75.981445, 39.723032 ] ], [ [ -75.787811, 39.723560 ], [ -75.734253, 38.788345 ] ], [ [ -75.787811, 39.723560 ], [ -75.710907, 39.802734 ], [ -75.621643, 39.847558 ], [ -75.406036, 39.795876 ], [ -75.201416, 39.887085 ], [ -75.129318, 39.949753 ], [ -74.892426, 40.082274 ], [ -74.763336, 40.190939 ], [ -75.078506, 40.449560 ], [ -75.095673, 40.555548 ], [ -75.204163, 40.586842 ], [ -75.199356, 40.747777 ], [ -75.082626, 40.869911 ], [ -75.136185, 41.000112 ], [ -75.113525, 41.013066 ] ], [ [ -75.406036, 39.795876 ], [ -75.554352, 39.691337 ], [ -75.528259, 39.498742 ] ], [ [ -73.913269, 40.960197 ], [ -74.016266, 41.013066 ] ], [ [ -73.665390, 41.013066 ], [ -73.657150, 40.985082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.355680 ], [ -74.840927, 41.426768 ], [ -75.011215, 41.495721 ], [ -75.075760, 41.641618 ], [ -75.048981, 41.751336 ], [ -75.168457, 41.841943 ], [ -75.386124, 41.999305 ], [ -75.981445, 42.000325 ] ], [ [ -74.679565, 41.355680 ], [ -73.913269, 40.960197 ] ], [ [ -74.679565, 41.355680 ], [ -74.801788, 41.311855 ], [ -74.976196, 41.088150 ], [ -75.136185, 41.000112 ], [ -75.114899, 40.946714 ] ], [ [ -73.282242, 42.743987 ], [ -73.264389, 43.100983 ] ], [ [ -73.282242, 42.743987 ], [ -73.081055, 42.740457 ] ], [ [ -73.282242, 42.743987 ], [ -73.498535, 42.054901 ], [ -73.081055, 42.045213 ] ], [ [ -73.498535, 42.054901 ], [ -73.554153, 41.290190 ], [ -73.475189, 41.205006 ], [ -73.692856, 41.107813 ], [ -73.657150, 40.985082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -73.348160, 45.007535 ], [ -73.368759, 44.804737 ], [ -73.408585, 44.676466 ], [ -73.384552, 44.379331 ], [ -73.329620, 44.226996 ], [ -73.429871, 44.019978 ], [ -73.338547, 43.758697 ], [ -73.401718, 43.613708 ], [ -73.383179, 43.575417 ], [ -73.240356, 43.567954 ], [ -73.267822, 43.036776 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.457581, 42.727344 ], [ -73.168945, 42.742474 ] ], [ [ -72.457581, 42.727344 ], [ -72.537918, 42.831164 ], [ -72.458954, 42.960945 ], [ -72.446594, 43.100983 ] ], [ [ -72.457581, 42.727344 ], [ -71.249084, 42.718264 ], [ -71.146088, 42.816559 ], [ -70.933914, 42.884518 ], [ -70.815125, 42.865396 ] ], [ [ -71.801147, 42.013591 ], [ -73.168945, 42.047253 ] ], [ [ -71.801147, 42.013591 ], [ -71.379547, 42.024814 ], [ -71.305389, 41.762605 ], [ -71.148148, 41.647775 ], [ -71.120682, 41.494692 ] ], [ [ -71.801147, 42.013591 ], [ -71.793594, 41.466914 ], [ -71.854019, 41.320107 ] ], [ [ -70.815125, 42.865396 ], [ -70.646210, 43.090454 ] ], [ [ -70.758133, 43.100983 ], [ -70.751266, 43.080424 ], [ -70.646210, 43.090454 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -71.505203, 45.008506 ], [ -71.503830, 45.008020 ], [ -71.620560, 44.736003 ], [ -71.546402, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.810074, 44.352332 ], [ -72.003708, 44.304196 ], [ -72.036667, 44.206819 ], [ -72.059326, 44.046142 ], [ -72.178802, 43.808765 ], [ -72.260513, 43.721490 ], [ -72.370377, 43.522166 ], [ -72.404022, 43.285703 ], [ -72.434921, 43.223191 ], [ -72.452087, 43.036776 ] ], [ [ -70.646210, 43.090454 ], [ -70.751266, 43.080424 ], [ -70.797958, 43.220189 ], [ -70.981979, 43.368121 ], [ -70.944214, 43.466376 ], [ -71.061630, 45.120053 ] ], [ [ -70.646210, 43.090454 ], [ -70.686722, 43.036776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "countries" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -71.073303, 45.286482 ], [ -71.057510, 45.058001 ] ] } } ] } ] } diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json index 3c2fc04..d1ff893 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } @@ -235,7 +235,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } @@ -459,7 +459,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -88.242188, 46.019853 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.000000, 46.381044 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.274414, 43.644026 ], [ -91.274414, 43.866218 ], [ -91.318359, 43.961191 ], [ -91.669922, 44.087585 ], [ -91.889648, 44.276671 ], [ -91.977539, 44.370987 ], [ -92.065430, 44.433780 ], [ -92.416992, 44.590467 ], [ -92.548828, 44.590467 ], [ -92.812500, 44.777936 ], [ -92.768555, 45.026950 ], [ -92.768555, 45.274886 ], [ -92.724609, 45.521744 ], [ -92.900391, 45.706179 ], [ -92.768555, 45.890008 ], [ -92.548828, 46.012224 ], [ -92.329102, 46.103709 ], [ -92.285156, 46.103709 ], [ -92.285156, 46.679594 ], [ -92.021484, 46.739861 ] ] } } @@ -589,7 +589,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.000000, 46.381044 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } @@ -725,7 +725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.516602, 36.527295 ], [ -89.560547, 36.421282 ], [ -89.604492, 36.279707 ], [ -89.692383, 36.031332 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -94.658203, 36.562600 ], [ -94.658203, 37.020098 ] ] } } @@ -807,7 +807,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.121094, 46.183634 ], [ -89.252930, 46.225453 ], [ -90.000000, 46.380570 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.274414, 43.644026 ], [ -91.274414, 43.866218 ], [ -91.318359, 43.961191 ], [ -91.669922, 44.087585 ], [ -91.889648, 44.276671 ], [ -91.977539, 44.370987 ], [ -92.065430, 44.433780 ], [ -92.416992, 44.590467 ], [ -92.548828, 44.590467 ], [ -92.812500, 44.777936 ], [ -92.768555, 45.026950 ], [ -92.768555, 45.274886 ], [ -92.724609, 45.521744 ], [ -92.900391, 45.706179 ], [ -92.768555, 45.890008 ], [ -92.548828, 46.012224 ], [ -92.329102, 46.103709 ], [ -92.285156, 46.103709 ], [ -92.285156, 46.679594 ], [ -92.021484, 46.739861 ] ] } } @@ -881,7 +881,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.085373, 41.640078 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -80.551758, 40.647304 ], [ -80.551758, 40.979898 ], [ -80.551758, 41.640078 ] ] } } @@ -983,7 +983,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.000000, 46.380570 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } @@ -1037,7 +1037,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 37.020098 ], [ -112.500000, 37.020098 ], [ -112.060547, 37.020098 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 37.020098 ], [ -114.038086, 40.979898 ], [ -114.038086, 41.310824 ] ] } } @@ -1051,7 +1051,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.486328, 46.286224 ], [ -123.266602, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.816406, 45.706179 ], [ -121.596680, 45.736860 ], [ -121.245117, 45.706179 ], [ -121.069336, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.794922, 45.859412 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 40.647304 ], [ -114.038086, 40.979898 ], [ -114.038086, 42.000325 ] ] } } @@ -1075,7 +1075,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.560547, 36.421282 ], [ -89.604492, 36.279707 ], [ -89.692383, 36.031332 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -94.658203, 36.562600 ], [ -94.658203, 37.020098 ] ] } } @@ -1143,7 +1143,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.560547, 46.289308 ], [ -90.000000, 46.380333 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.274414, 43.644026 ], [ -91.274414, 43.866218 ], [ -91.318359, 43.961191 ], [ -91.669922, 44.087585 ], [ -91.889648, 44.276671 ], [ -91.977539, 44.370987 ], [ -92.065430, 44.433780 ], [ -92.416992, 44.590467 ], [ -92.548828, 44.590467 ], [ -92.812500, 44.777936 ], [ -92.768555, 45.026950 ], [ -92.768555, 45.274886 ], [ -92.724609, 45.521744 ], [ -92.900391, 45.706179 ], [ -92.768555, 45.890008 ], [ -92.548828, 46.012224 ], [ -92.329102, 46.103709 ], [ -92.285156, 46.103709 ], [ -92.285156, 46.679594 ], [ -92.021484, 46.739861 ] ] } } @@ -1195,7 +1195,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -80.551758, 40.647304 ], [ -80.551758, 40.979898 ], [ -80.551758, 41.310824 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -73.564453, 41.310824 ], [ -73.476562, 41.211722 ], [ -73.696289, 41.112469 ], [ -73.696289, 41.013066 ] ] } } @@ -1289,7 +1289,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 65536 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.000000, 46.380333 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } @@ -1337,7 +1337,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.013672, 46.286224 ], [ -123.793945, 46.286224 ], [ -123.530273, 46.286224 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.530273, 42.000325 ], [ -124.233398, 42.000325 ] ] } } @@ -1345,7 +1345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 37.020098 ], [ -112.456055, 37.020098 ], [ -112.280273, 37.020098 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 37.020098 ], [ -114.038086, 41.145570 ] ] } } @@ -1359,7 +1359,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969727, 46.286224 ], [ -123.793945, 46.286224 ], [ -123.486328, 46.286224 ], [ -123.266602, 46.195042 ], [ -122.958984, 46.134170 ], [ -122.783203, 45.951150 ], [ -122.739258, 45.798170 ], [ -122.695312, 45.644768 ], [ -122.431641, 45.614037 ], [ -122.211914, 45.614037 ], [ -121.816406, 45.706179 ], [ -121.596680, 45.736860 ], [ -121.245117, 45.706179 ], [ -121.069336, 45.644768 ], [ -120.849609, 45.675482 ], [ -120.629883, 45.767523 ], [ -120.190430, 45.767523 ], [ -119.794922, 45.859412 ], [ -119.619141, 45.951150 ], [ -119.355469, 45.890008 ], [ -119.003906, 46.012224 ], [ -116.938477, 46.012224 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.038086, 40.813809 ], [ -114.038086, 42.000325 ] ] } } @@ -1383,7 +1383,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.070312, 48.777913 ], [ -117.070312, 49.009051 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -116.059570, 48.777913 ], [ -116.059570, 49.009051 ] ] } } @@ -1391,7 +1391,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.072266, 32.138409 ], [ -109.072266, 31.353637 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -103.007812, 32.138409 ], [ -103.007812, 32.026706 ], [ -103.930664, 32.026706 ], [ -105.732422, 32.026706 ], [ -106.655273, 32.026706 ], [ -106.655273, 31.914868 ], [ -106.523438, 31.765537 ] ] } } @@ -1399,7 +1399,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -112.719727, 37.020098 ], [ -112.456055, 37.020098 ], [ -110.522461, 37.020098 ], [ -109.072266, 37.020098 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -103.007812, 37.020098 ], [ -103.007812, 36.527295 ] ] } } @@ -1433,7 +1433,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -101.030273, 43.004647 ], [ -102.128906, 43.004647 ], [ -104.062500, 43.004647 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -111.093750, 42.032974 ], [ -111.093750, 41.046217 ], [ -109.072266, 41.013066 ] ] } } @@ -1465,13 +1465,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -104.106445, 48.777913 ], [ -104.106445, 49.009051 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.142578, 32.138409 ], [ -91.142578, 32.026706 ], [ -91.362305, 31.877558 ], [ -91.450195, 31.653381 ], [ -91.538086, 31.428663 ], [ -91.625977, 31.316101 ], [ -91.625977, 31.052934 ], [ -90.703125, 31.052934 ], [ -89.780273, 31.015279 ], [ -89.824219, 30.864510 ], [ -89.868164, 30.713504 ], [ -89.824219, 30.562261 ], [ -89.780273, 30.524413 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -94.042969, 32.138409 ], [ -93.999023, 31.952162 ], [ -93.867188, 31.840233 ], [ -93.823242, 31.690782 ], [ -93.735352, 31.466154 ], [ -93.603516, 31.240985 ], [ -93.515625, 31.090574 ], [ -93.603516, 30.751278 ], [ -93.691406, 30.637912 ], [ -93.779297, 30.372875 ], [ -93.691406, 30.334954 ], [ -93.691406, 30.107118 ], [ -93.823242, 29.993002 ], [ -93.955078, 29.840644 ], [ -93.867188, 29.726222 ] ] } } @@ -1479,7 +1479,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -94.658203, 36.562600 ], [ -94.658203, 37.020098 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.780273, 35.029996 ], [ -90.263672, 35.029996 ] ] } } @@ -1521,7 +1521,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.780273, 46.377254 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ], [ -90.351562, 46.619261 ], [ -90.439453, 46.589069 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.230469, 43.516689 ], [ -91.274414, 43.644026 ], [ -91.274414, 43.866218 ], [ -91.318359, 43.961191 ], [ -91.669922, 44.087585 ], [ -91.889648, 44.276671 ], [ -91.977539, 44.370987 ], [ -92.065430, 44.433780 ], [ -92.416992, 44.590467 ], [ -92.548828, 44.590467 ], [ -92.812500, 44.777936 ], [ -92.768555, 45.026950 ], [ -92.768555, 45.274886 ], [ -92.724609, 45.521744 ], [ -92.900391, 45.706179 ], [ -92.768555, 45.890008 ], [ -92.548828, 46.012224 ], [ -92.329102, 46.103709 ], [ -92.285156, 46.103709 ], [ -92.285156, 46.679594 ], [ -92.021484, 46.739861 ] ] } } @@ -1549,13 +1549,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -97.163086, 48.777913 ], [ -97.250977, 48.922499 ], [ -97.250977, 49.009051 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -90.219727, 31.052934 ], [ -89.780273, 31.015279 ], [ -89.824219, 30.864510 ], [ -89.868164, 30.713504 ], [ -89.824219, 30.562261 ], [ -89.692383, 30.448674 ], [ -89.648438, 30.297018 ], [ -89.648438, 30.183122 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -88.461914, 32.138409 ], [ -88.461914, 31.914868 ], [ -88.417969, 30.410782 ] ] } } @@ -1571,7 +1571,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -80.551758, 40.647304 ], [ -80.551758, 41.145570 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.516602, 36.527295 ], [ -89.560547, 36.421282 ], [ -89.604492, 36.279707 ], [ -89.692383, 36.031332 ] ] } } @@ -1635,7 +1635,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -78.530273, 42.000325 ], [ -79.760742, 42.000325 ], [ -79.760742, 42.261049 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 45.120053 ], [ -87.758789, 45.243953 ], [ -87.714844, 45.398450 ], [ -87.934570, 45.398450 ], [ -87.890625, 45.583290 ], [ -87.802734, 45.644768 ], [ -87.890625, 45.798170 ], [ -88.154297, 45.859412 ], [ -88.198242, 46.012224 ], [ -88.374023, 46.042736 ], [ -88.681641, 46.042736 ], [ -89.252930, 46.225453 ], [ -90.131836, 46.407564 ], [ -90.219727, 46.589069 ] ] } } @@ -1657,7 +1657,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -73.652344, 41.145570 ], [ -73.696289, 41.112469 ], [ -73.696289, 41.013066 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -78.969727, 34.234512 ], [ -78.574219, 33.870416 ] ] } } @@ -1693,7 +1693,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.707031, 41.376809 ], [ -74.882812, 41.442726 ], [ -75.014648, 41.508577 ], [ -75.102539, 41.672912 ], [ -75.058594, 41.771312 ], [ -75.190430, 41.869561 ], [ -75.410156, 42.000325 ], [ -76.772461, 42.032974 ], [ -78.222656, 42.000325 ], [ -78.969727, 42.000325 ] ] } } , { "type": "Feature", "properties": { "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -71.894531, 41.343825 ], [ -71.806641, 41.475660 ], [ -71.806641, 42.032974 ] ] } } diff --git a/tests/ne_110m_populated_places/out/-yNAME.json b/tests/ne_110m_populated_places/out/-yNAME.json index ba2002a..ae02007 100644 --- a/tests/ne_110m_populated_places/out/-yNAME.json +++ b/tests/ne_110m_populated_places/out/-yNAME.json @@ -11,14593 +11,14593 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.296472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.231934, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.197754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.549316, 14.626109 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.296276 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.488781 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.208740 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.917923 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.923554 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.153742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.340574 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.561315 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.609278 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.187267 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.820068, -6.162401 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.479035 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.907959, 47.923705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.294317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.183838, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.278557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.990845, 39.745210 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.208740 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.264282, -19.036156 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.303443 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.151347 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.078247, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.729126, 0.335081 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.555848 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.642024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.108330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.400948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.785767, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.768921, 38.561053 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.167862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.113892, 19.771873 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.935013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.970093, -37.814124 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.189331, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.755153 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.944458, -9.432806 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.920974 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.276765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.988098, 39.743098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.673711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.939093 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.253613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.135309 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.601065 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.769714, 17.978733 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.351990, 25.085599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.704041, 45.419660 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.599302 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.261536, -19.038752 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.920471, 10.504016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.303443 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.628723, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.919617, -15.779039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.837349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.228455, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.518982, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.535749 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.476501, 14.719104 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.802307, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.003540, 12.653738 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.654236, 26.120918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.148865, 38.726233 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.553114 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.112122, 13.520508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.045959, 36.765292 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.870135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.080994, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.045776, 12.117208 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.644521 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.413967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.055847, -1.949697 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.577454, 4.830997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.006653, 41.108330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.686473 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.315247, 54.684947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.930725, 60.178404 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.812439, -1.279801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.696594, 9.037003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.513123, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.974548, 29.372602 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.858704, 40.398856 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.164255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.168376 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.853088, 19.020577 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.198181, 28.601403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.771667, 38.561053 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.934606 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.720005 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.808765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.170593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.170683 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.598572, 17.968283 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.673353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.930725, 4.885731 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.932907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.023451 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.816293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.752896 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.462608 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.947205, -9.435515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.918247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.846659 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.378479, 7.103618 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 0, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 1, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.739655, -13.840747 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.992334 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.769629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.275869 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.992334 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.986725, 39.742042 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.133759, 19.444579 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.672474 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.530090, 14.623451 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.822774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.768158, 17.252302 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.832779 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.937740 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.134046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.832779 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422913, 43.702630 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 32 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.212860 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.599696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.768341, 17.977427 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350616, 25.084355 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.702667, 45.418696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 38 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.623993, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.152313, -16.495349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338104, 18.543419 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 20, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.260162, -19.040051 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 20, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919098, 10.504016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 20, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.302132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 21, "y": 38 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.600433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 21, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643890, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 21, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.652510 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 21, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387482, 15.301406 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 21, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.118480 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 22, "y": 38 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.855510 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 22, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.835982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 23, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627350, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 23, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918243, -15.780360 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 24, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.227081, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 27, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.517609, 14.916919 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 28, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475128, 14.719104 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 28, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 28, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.534395 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.592102, 13.455073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975494, 18.087117 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150811 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150811 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.800934, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.002167, 12.652398 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652863, 26.119685 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.602038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.147491, 38.725162 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 30, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.322073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.818716 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.373539 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685913, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.119476, 51.502759 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.113495, 13.519173 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.047333, 36.765292 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.330475, 48.869232 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269562, 52.080350 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733246, 0.333708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.803787 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406158, 43.740344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.139984, 46.210250 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.128998, 49.612490 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 33, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.231659, -8.836223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 32 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047150, 12.115865 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179474, 32.893426 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.440643, 43.936473 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399200, 52.524577 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 34, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561493, 55.680682 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 38 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.917153 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.082367, -22.569634 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.557281, 4.366951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382874, 43.850374 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.150512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.997620, 52.252187 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 35, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 37 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.119774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.645769 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.985340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314362, 42.685464 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.684153 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 36, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932098, 60.177721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 36 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.027496, -26.167764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.815378 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.280182, -15.413967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 32 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.057220, -1.951069 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.578827, 4.830997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.531891, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.167073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.861481, 39.929748 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.107295 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.856964, 47.005543 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 37, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.435641 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.182881 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 32 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.813812, -1.281174 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.697968, 9.035647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.767609, 32.082575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613068, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 38, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613068, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.239441, -11.703341 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.796899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.064789, 9.560126 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.357032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391632, 33.340854 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.184119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 39, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.727255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 40, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514496, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 40, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.363922, 2.069100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 40, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770172, 24.643273 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 40, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.975922, 29.372602 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 40, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860077, 40.397810 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 41, "y": 32 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449371, -4.616122 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 41, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.582428, 26.236766 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 41, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.674032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 42, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.165544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 42, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 42, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.382721, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 44, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.854462, 19.019279 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 44, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.519004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 44, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773041, 38.561053 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 44, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292145, 41.313918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 44, "y": 21 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.181926 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 45, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.167006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 45, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 45, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199554, 28.600197 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 45, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.702635 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 45, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.582062, 42.875964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 46, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.933243 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 47, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.321838, 22.497332 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 47, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.718789 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 47, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.807774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 48, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 49, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 49, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.826935, -6.171958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.169312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.913940, 11.552689 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 28 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 50, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.919103 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 51, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.826935, -6.171958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 51, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.919103 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 52, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.932098, 4.884363 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 52, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.182281, 22.308155 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 52, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.385040, 39.931854 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 53, "y": 29 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 53, "y": 27 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.567841, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 53, "y": 26 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.433258, 31.218674 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 54, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 54, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.022384 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 55, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 56, "y": 25 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.457306, 34.752896 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 57, "y": 39 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.817378 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 58, "y": 38 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.917153 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 58, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.463963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 60, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.948578, -9.436870 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 60, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149567, 6.916884 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 61, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 62, "y": 31 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.016815, 1.338837 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 62, "y": 30 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379852, 7.103618 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 63, "y": 40 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.782867, -41.299476 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 63, "y": 39 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.847758 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 63, "y": 35 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441315, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 63, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.215851, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 1, "y": 71 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 2, "y": 68 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738968, -13.841413 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.769629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.275421 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 21, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181992, 33.992334 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.986038, 39.741514 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 56 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.133072, 19.444579 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 28, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331955, 25.672474 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 30, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.822178 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 31, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.529404, 14.623451 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.205551, 13.712037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219772, 14.104613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767471, 17.252302 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752609, 41.832223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270828, 12.155472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219772, 14.104613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 33, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.832209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.937064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366562, 23.134046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 34, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.832209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.970541 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226288, 25.790000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 35, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422226, 43.702133 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 68 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 64 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502121, -0.212860 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767654, 17.977427 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350616, 25.083733 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 36, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085617, 4.599012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.982620, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 37, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 76 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.623306, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338104, 18.543419 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 69 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.152313, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902573, 18.472445 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 40, "y": 70 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.260162, -19.040700 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 40, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919098, 10.503340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 41, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717514, 17.302132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 42, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517258, 10.652510 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 42, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212387, 13.148358 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 42, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387482, 15.301406 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 42, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.118480 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 43, "y": 77 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399887, -34.600433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 43, "y": 73 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643890, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 43, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167114, 6.802353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 44, "y": 77 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.856073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 44, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167160, 5.835299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 46, "y": 69 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918243, -15.781021 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 47, "y": 72 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627350, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 48, "y": 72 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.227081, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 55, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516922, 14.916919 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 56, "y": 34 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 56, "y": 33 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 57, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475128, 14.718440 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 58, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.592102, 13.454405 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 58, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975494, 18.086465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682785, 9.533718 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 53 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150200 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 60, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.800247, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 60, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652863, 26.119685 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 60, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.147491, 38.725162 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 61, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.002167, 12.652398 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 61, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.602038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 61, "y": 41 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 62, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042282, 5.322073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 62, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.818716 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 62, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685913, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219040, 5.552431 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372868 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118790, 51.502332 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220169, 6.134410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114182, 13.519173 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331161, 48.868780 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 65, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.445635 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 65, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048019, 36.765292 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 65, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269562, 52.080350 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 66, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733246, 0.333708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 66, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 66, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406845, 43.739848 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 66, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.139984, 46.210250 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 66, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129684, 49.612045 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 67, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457855, 0.385892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 67, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.782883, 3.750523 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 67, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179520, 36.803237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 67, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516220, 47.134155 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 67, "y": 37 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.918893 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 67 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232346, -8.836223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514359, 3.869050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179474, 32.892849 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441330, 43.936473 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 41 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399200, 52.524159 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 68, "y": 40 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561493, 55.680682 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 65 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.256714 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047150, 12.115194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514313, 35.900175 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514313, 46.055603 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202253 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 69, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.463501, 50.085344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 76 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432999, -33.917723 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 72 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083054, -22.569634 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.557968, 4.366951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.265900, 42.466019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382874, 43.850374 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.150054 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 70, "y": 37 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095169, 59.352796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 71, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818649, 41.327842 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 71, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.465469, 44.820812 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 71, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.997620, 52.252187 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 72, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731155, 37.985340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 72, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314362, 42.685464 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 72, "y": 40 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683756 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 72, "y": 39 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 72, "y": 37 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932098, 60.177721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 73, "y": 74 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.119774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 73, "y": 73 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.645769 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 73, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097336, 44.435741 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 73, "y": 41 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564011, 53.902315 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 73, "y": 40 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683756 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 73 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227310, -25.704650 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 69 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.280869, -15.414629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 65 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359589, -3.375655 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 64 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.057907, -1.951069 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.107295 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857651, 47.005075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857651, 47.005075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 74, "y": 43 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.435641 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 73 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133194, -26.316190 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 70 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042557, -17.815378 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 69 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581329, 0.319289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.579514, 4.830312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.531891, 15.590632 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366165, 35.167073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 75, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862167, 39.929221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 76, "y": 69 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 76, "y": 66 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.182881 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 76, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206375, 31.778964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 76, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.767609, 32.081993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 66 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265823, -6.797580 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 64 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814499, -1.281174 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.697968, 9.035647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.333856 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 40 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613068, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 77, "y": 39 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613068, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 68 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240128, -11.704014 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 60 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.064789, 9.560126 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147430, 11.595068 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204178, 15.357032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391632, 33.340854 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183595 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 79, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.727255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 80, "y": 70 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514496, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 80, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364609, 2.069100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 80, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770172, 24.643273 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 81, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.582428, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 81, "y": 53 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.975922, 29.372003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 81, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860077, 40.397287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 82, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.582428, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 82, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422195, 35.674032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 83, "y": 65 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449371, -4.616122 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 83, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366531, 24.467151 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 83, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.232274 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 84, "y": 71 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.166189 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 84, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.613699 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 84, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.382721, 37.950154 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 88, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.519004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 88, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773727, 38.560516 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 88, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292831, 41.313918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 89, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.854462, 19.019279 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 89, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164139, 33.702064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 89, "y": 42 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.181495 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 90, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.167006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 90, "y": 51 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164139, 33.702064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 90, "y": 47 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.582748, 42.875461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 91, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 91, "y": 53 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199554, 28.600197 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 92, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857559, 6.932562 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 94, "y": 53 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.718789 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 95, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322525, 22.497332 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 95, "y": 53 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638824, 27.473552 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 95, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572708, 43.807279 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 96, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 98, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164703, 16.785478 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 98, "y": 56 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.768642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 99, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514603, 13.752058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 100, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.295590 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 100, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 100, "y": 57 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 100, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 101, "y": 66 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.826935, -6.171958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 101, "y": 59 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914627, 11.552017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 101, "y": 56 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 101, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 101, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914139, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 102, "y": 66 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.826935, -6.171958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 102, "y": 44 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914139, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 104, "y": 62 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.932785, 4.883678 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 104, "y": 55 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.182968, 22.307520 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 105, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.385727, 39.931327 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 106, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430158 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 107, "y": 58 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980072, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 107, "y": 54 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.567841, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 107, "y": 52 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.433945, 31.218674 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 108, "y": 67 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 108, "y": 48 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.021851 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 109, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997147, 37.568528 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 111, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 112, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.457993, 34.752332 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 113, "y": 50 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.748840, 35.687418 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 115, "y": 78 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.817921 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 116, "y": 67 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.464640 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 117, "y": 77 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.282622 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 117, "y": 76 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.917723 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 120, "y": 67 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949265, -9.437547 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 120, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149567, 6.916884 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 123, "y": 70 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 124, "y": 61 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379852, 7.103618 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 125, "y": 63 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017502, 1.338837 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 126, "y": 80 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.782867, -41.299476 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 126, "y": 78 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762955, -36.847758 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 127, "y": 70 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441315, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 127, "y": 67 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216537, -8.516515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 3, "y": 143 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220604, -21.138307 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 5, "y": 137 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738968, -13.841413 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.769358 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 87 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.275421 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 43, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181992, 33.992050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 53, "y": 97 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.986038, 39.741250 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 56, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331955, 25.672164 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 57, "y": 113 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.133072, 19.444579 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 60, "y": 105 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.822178 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 63, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.529060, 14.623119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 64, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.205208, 13.712037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 64, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767128, 17.252302 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219772, 14.104280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752266, 41.831968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 66, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270485, 12.155137 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 67, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402122, 33.832209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 68, "y": 120 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086266, 9.937064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 68, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402122, 33.832209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 69, "y": 111 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366219, 23.134046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 70, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226288, 25.789690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 70, "y": 108 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226288, 25.789690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 71, "y": 121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535179, 8.970202 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 71, "y": 93 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422226, 43.702133 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 72, "y": 128 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502121, -0.212860 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 72, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350273, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 73, "y": 136 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052269, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 73, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767654, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 73, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767654, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 73, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350273, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 73, "y": 97 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 74, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 75, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085617, 4.598669 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 75, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.982277, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 76, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338104, 18.543093 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 153 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669212, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 152 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902229, 18.472120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 139 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151970, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 80, "y": 120 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919098, 10.503003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 81, "y": 141 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259819, -19.040700 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 83, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717171, 17.302132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 120 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517258, 10.652173 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741791, 12.052751 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212387, 13.148358 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387138, 15.301075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 116 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387138, 15.301075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 84, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.118152 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 85, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616623, 13.102218 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 86, "y": 154 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399544, -34.600433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 86, "y": 146 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643547, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 86, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167114, 6.802012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 87, "y": 146 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643547, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 88, "y": 154 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.856073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 88, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167160, 5.835299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 93, "y": 139 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918243, -15.781351 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 94, "y": 145 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627007, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 97, "y": 144 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.227081, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 111, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516922, 14.916919 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 112, "y": 68 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950340, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 115, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475128, 14.718108 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 116, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598526, 11.865335 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 116, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591759, 13.454071 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 116, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975494, 18.086465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 118, "y": 121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682442, 9.533718 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 118, "y": 107 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150200 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 120, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799904, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 121, "y": 108 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652863, 26.119377 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 121, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.147148, 38.724894 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 122, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.002167, 12.652063 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 122, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.602038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 123, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836586, 34.025348 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 123, "y": 83 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335178 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 123, "y": 82 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335178 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 124, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275841, 6.818716 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 125, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042282, 5.322073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 125, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685570, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 126, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526756, 12.372533 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218697, 5.552089 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 85 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118790, 51.502118 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220512, 6.134069 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 129, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.517929, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 129, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114525, 13.518839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 129, "y": 94 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516457, 42.500200 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 129, "y": 88 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331161, 48.868780 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 130, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.445294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 130, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048363, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 131, "y": 85 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331360, 50.835432 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 131, "y": 84 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269905, 52.080139 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 132, "y": 127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733246, 0.333708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 132, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.139984, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 132, "y": 87 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129684, 49.611822 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 133, "y": 121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085485 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 133, "y": 93 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406845, 43.739848 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 133, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466927, 46.916738 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 134, "y": 127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457855, 0.385549 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 134, "y": 125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783226, 3.750180 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 134, "y": 89 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516563, 47.133921 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 135, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179520, 36.802962 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 135, "y": 74 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747719, 59.918721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 136, "y": 125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 136, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453346, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 136, "y": 93 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441673, 43.936226 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 136, "y": 80 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561493, 55.680682 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 137, "y": 134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232346, -8.836223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 137, "y": 103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179817, 32.892561 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 137, "y": 83 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399544, 52.523950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 131 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.257056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047150, 12.115194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 100 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514656, 35.899897 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514656, 46.055365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514656, 46.055365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 138, "y": 86 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.463844, 50.085344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 139, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999870, 45.800084 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 139, "y": 88 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364479, 48.202024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 140, "y": 144 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083397, -22.569951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 140, "y": 88 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.150054 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 140, "y": 75 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095169, 59.352796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 141, "y": 153 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432999, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 141, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.557968, 4.366951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 141, "y": 94 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266243, 42.466019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 141, "y": 93 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382874, 43.850127 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 141, "y": 89 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081192, 47.502127 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 142, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818649, 41.327584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 142, "y": 92 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.465813, 44.820812 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 142, "y": 84 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.997963, 52.251977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 143, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433296, 42.000070 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 143, "y": 94 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165848, 42.666786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 144, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731155, 37.985340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 144, "y": 94 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685464 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 145, "y": 81 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 145, "y": 78 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 145, "y": 75 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727821, 59.433903 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 145, "y": 74 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932098, 60.177550 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 146, "y": 149 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.119774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 146, "y": 146 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646081 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 146, "y": 92 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097679, 44.435496 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 146, "y": 81 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 147, "y": 149 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.482986, -29.316638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 147, "y": 147 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.027840, -26.168072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 147, "y": 82 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564354, 53.902113 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 148, "y": 146 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227310, -25.704959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 148, "y": 139 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281212, -15.414629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 148, "y": 130 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359932, -3.375997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 148, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.107037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 148, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857651, 47.005075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 149, "y": 129 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058250, -1.951412 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 149, "y": 86 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.435423 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 150, "y": 147 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133194, -26.316498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 150, "y": 140 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042557, -17.815705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 150, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.579857, 4.830312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 150, "y": 105 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052157 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 147 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587166, -25.953106 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581329, 0.318945 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 116 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.531891, 15.590301 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 101 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366508, 35.166792 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 97 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862167, 39.929221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 151, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862167, 39.929221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 152, "y": 138 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.983045 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 152, "y": 103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.767952, 32.081993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 153, "y": 132 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749855, -6.183222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 153, "y": 104 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206375, 31.778672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 153, "y": 103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931129, 31.952162 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 153, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507469, 33.874121 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 154, "y": 128 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814499, -1.281174 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 154, "y": 80 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613411, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 155, "y": 132 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266167, -6.797921 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 155, "y": 121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.697968, 9.035308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 155, "y": 116 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933144, 15.333525 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 158, "y": 136 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240128, -11.704014 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 158, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147774, 11.595068 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 159, "y": 121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065132, 9.560126 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 159, "y": 116 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204521, 15.356701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 159, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391632, 33.340854 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 159, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511452, 40.183332 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 159, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.726999 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 160, "y": 126 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364609, 2.068757 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 161, "y": 141 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514496, -18.914406 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 161, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770515, 24.642961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 162, "y": 106 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976265, 29.371704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 163, "y": 108 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.582771, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 163, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860077, 40.397287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 164, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532745, 25.286611 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 164, "y": 100 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422195, 35.674032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 166, "y": 110 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366531, 24.466838 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 167, "y": 131 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449715, -4.616465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 167, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.231963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 168, "y": 142 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.166511 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 169, "y": 110 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593178, 23.613385 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 169, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383064, 37.950154 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 176, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773727, 38.560247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 177, "y": 101 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181252, 34.518721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 177, "y": 95 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292831, 41.313661 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 178, "y": 85 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.181280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 179, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.854805, 19.018954 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 180, "y": 125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.167006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 180, "y": 102 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164482, 33.702064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 181, "y": 94 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583092, 42.875209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 182, "y": 106 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199898, 28.600197 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 183, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972107 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 184, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857559, 6.932221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 188, "y": 107 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314674, 27.718789 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 190, "y": 111 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322525, 22.497015 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 190, "y": 93 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.807031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 191, "y": 107 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638824, 27.473247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 192, "y": 110 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 196, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164703, 16.785478 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 196, "y": 113 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.768642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 199, "y": 118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514603, 13.752058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 200, "y": 125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 200, "y": 115 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 200, "y": 114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 201, "y": 127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.295246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 201, "y": 105 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 202, "y": 119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914627, 11.552017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 202, "y": 105 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 203, "y": 132 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827278, -6.172300 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 203, "y": 112 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035480 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 204, "y": 89 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914482, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 209, "y": 124 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933128, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 209, "y": 111 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.182968, 22.307202 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 210, "y": 96 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386070, 39.931064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 213, "y": 116 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569801, 16.430158 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 214, "y": 117 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980072, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 214, "y": 109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568184, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 214, "y": 104 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434288, 31.218674 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 217, "y": 134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 217, "y": 97 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752602, 39.021584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 218, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997490, 37.568528 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 223, "y": 122 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 224, "y": 101 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.457993, 34.752050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 227, "y": 100 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749184, 35.687139 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 231, "y": 157 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.817921 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 232, "y": 134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192421, -9.464640 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 234, "y": 154 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128761, -35.282902 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 235, "y": 153 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183205, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 240, "y": 123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149910, 6.916884 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 241, "y": 134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949608, -9.437886 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 247, "y": 140 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316383, -17.733318 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 249, "y": 122 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379852, 7.103277 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 251, "y": 127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017502, 1.338494 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 252, "y": 160 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783211, -41.299734 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 252, "y": 156 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762955, -36.848032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 254, "y": 141 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441658, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 255, "y": 134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216537, -8.516515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 6, "y": 286 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220604, -21.138467 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 11, "y": 275 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738796, -13.841413 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 80, "y": 175 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123608, 49.275421 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.769222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 87, "y": 204 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181992, 33.992050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 106, "y": 194 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.986038, 39.741250 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 113, "y": 218 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331955, 25.672009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 114, "y": 227 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.133072, 19.444417 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 115, "y": 227 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.133072, 19.444417 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 120, "y": 211 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.822030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 127, "y": 234 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.529060, 14.623119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 129, "y": 236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.205036, 13.712037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 129, "y": 231 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767128, 17.252138 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 235 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219601, 14.104113 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 190 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752094, 41.831968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 133, "y": 238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270485, 12.154969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 135, "y": 204 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401951, 33.832066 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 136, "y": 241 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086094, 9.937064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 138, "y": 222 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366219, 23.134046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 141, "y": 218 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226116, 25.789690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 141, "y": 217 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226116, 25.789690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 142, "y": 243 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535007, 8.970032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 143, "y": 186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422054, 43.702009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 144, "y": 256 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502121, -0.213031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 145, "y": 219 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350101, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 146, "y": 273 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052097, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 146, "y": 230 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767483, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 146, "y": 229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767483, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 146, "y": 219 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350101, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 146, "y": 195 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901587 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 148, "y": 183 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 150, "y": 249 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085445, 4.598498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 150, "y": 192 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.982105, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 153, "y": 229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338104, 18.543093 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 154, "y": 305 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 155, "y": 306 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669041, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 156, "y": 229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902058, 18.472120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 159, "y": 279 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151970, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 160, "y": 240 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919098, 10.503003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 163, "y": 283 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259647, -19.040862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 166, "y": 231 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717171, 17.302132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 166, "y": 230 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717171, 17.302132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 168, "y": 240 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517086, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 168, "y": 238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741791, 12.052751 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 168, "y": 237 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212215, 13.148358 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 168, "y": 233 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387138, 15.301075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 168, "y": 231 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850109, 17.118152 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 169, "y": 235 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000042, 14.002034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 171, "y": 237 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616623, 13.102050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 172, "y": 308 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399544, -34.600433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 173, "y": 293 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643547, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 173, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167114, 6.802012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 174, "y": 293 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643547, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 176, "y": 308 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.856073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 177, "y": 247 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167160, 5.835128 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 187, "y": 278 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918072, -15.781351 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 189, "y": 290 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627007, -23.556592 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 194, "y": 289 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.227081, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 222, "y": 234 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516750, 14.916754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 224, "y": 136 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950169, 64.150075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 231, "y": 234 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475128, 14.717942 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 232, "y": 236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591759, 13.453904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 233, "y": 239 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598526, 11.865167 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 233, "y": 238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598526, 11.865167 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 233, "y": 229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975494, 18.086465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 236, "y": 242 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682270, 9.533548 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 237, "y": 243 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236294, 8.472033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 237, "y": 215 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 240, "y": 247 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799732, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 240, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799732, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 242, "y": 217 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652691, 26.119223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 242, "y": 196 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146976, 38.724760 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 243, "y": 196 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146976, 38.724760 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 244, "y": 237 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001995, 12.652063 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 245, "y": 205 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.602038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 246, "y": 204 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836414, 34.025348 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 247, "y": 166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335076 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 247, "y": 165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335076 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 248, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275669, 6.818546 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 250, "y": 248 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042110, 5.322073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 250, "y": 193 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685398, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 253, "y": 238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526756, 12.372365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 248 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218697, 5.552089 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 170 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118790, 51.502011 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 257, "y": 247 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220684, 6.133898 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 258, "y": 236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 258, "y": 189 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516457, 42.500073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 259, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.517929, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 259, "y": 236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 259, "y": 176 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331333, 48.868667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 260, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389454, 6.445294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 260, "y": 199 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048534, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 262, "y": 171 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331360, 50.835324 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 262, "y": 168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269905, 52.080139 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 263, "y": 168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914665, 52.352014 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 264, "y": 181 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.139984, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 264, "y": 174 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129856, 49.611711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 265, "y": 255 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733246, 0.333536 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 266, "y": 243 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531300, 9.085316 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 266, "y": 186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406845, 43.739724 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 266, "y": 180 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466927, 46.916738 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 268, "y": 250 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783226, 3.750180 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 269, "y": 255 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457855, 0.385549 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 269, "y": 179 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516563, 47.133805 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 270, "y": 199 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179520, 36.802825 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 271, "y": 148 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747890, 59.918721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 272, "y": 250 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 273, "y": 190 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453346, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 273, "y": 186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441673, 43.936102 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 273, "y": 160 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561493, 55.680585 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 274, "y": 268 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232346, -8.836223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 274, "y": 206 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179989, 32.892561 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 275, "y": 167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399544, 52.523846 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 276, "y": 201 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514656, 35.899758 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 276, "y": 182 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514828, 46.055365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 276, "y": 173 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464016, 50.085344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 277, "y": 262 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.257228 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 277, "y": 238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047150, 12.115194 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 278, "y": 182 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999870, 45.800084 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 279, "y": 177 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364651, 48.202024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 280, "y": 288 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083397, -22.569951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 280, "y": 177 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116871, 48.150054 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 281, "y": 150 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095341, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 282, "y": 307 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432999, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 282, "y": 249 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558140, 4.366780 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 282, "y": 186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382874, 43.850127 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 283, "y": 189 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266243, 42.466019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 283, "y": 179 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081364, 47.502011 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 284, "y": 191 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818821, 41.327584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 285, "y": 184 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.465984, 44.820690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 285, "y": 168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.997963, 52.251977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 286, "y": 190 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433296, 42.000070 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 286, "y": 188 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165848, 42.666786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 289, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731327, 37.985340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 289, "y": 188 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685338 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 290, "y": 157 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 290, "y": 156 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 291, "y": 162 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683458 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 291, "y": 150 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727993, 59.433903 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 291, "y": 148 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932098, 60.177550 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 292, "y": 292 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 292, "y": 162 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683458 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 293, "y": 299 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.119924 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 293, "y": 185 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097851, 44.435373 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 295, "y": 299 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483158, -29.316638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 295, "y": 294 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028011, -26.168072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 295, "y": 164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564526, 53.902012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 296, "y": 293 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 296, "y": 278 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281212, -15.414629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 297, "y": 260 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359932, -3.375997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 297, "y": 191 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.107037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 297, "y": 180 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857651, 47.005075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 298, "y": 258 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058422, -1.951584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 299, "y": 172 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 300, "y": 295 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199970, -26.466578 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 300, "y": 294 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133194, -26.316498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 300, "y": 281 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042728, -17.815705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 300, "y": 249 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.579857, 4.830141 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 300, "y": 211 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052008 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 302, "y": 294 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587166, -25.953260 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 302, "y": 255 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581329, 0.318774 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 302, "y": 233 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532063, 15.590136 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 302, "y": 193 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862339, 39.929221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 303, "y": 202 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366508, 35.166792 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 304, "y": 276 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783131, -13.983212 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 305, "y": 207 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.767952, 32.081993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 306, "y": 264 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749855, -6.183222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 306, "y": 208 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206547, 31.778526 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 306, "y": 204 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507641, 33.873979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 307, "y": 208 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931301, 31.952017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 307, "y": 207 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931301, 31.952017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 307, "y": 205 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.297970, 33.502039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 308, "y": 257 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814671, -1.281345 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 309, "y": 160 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613411, 55.754168 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 311, "y": 265 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266338, -6.797921 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 311, "y": 243 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.697968, 9.035308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 311, "y": 233 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933315, 15.333359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 317, "y": 272 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240128, -11.704014 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 317, "y": 239 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147945, 11.595068 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 318, "y": 242 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065304, 9.560126 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 318, "y": 233 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204521, 15.356701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 319, "y": 205 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391804, 33.340711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 319, "y": 193 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511452, 40.183201 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 319, "y": 190 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788685, 41.726999 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 320, "y": 253 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364609, 2.068757 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 322, "y": 219 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770687, 24.642804 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 323, "y": 283 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514668, -18.914569 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 324, "y": 212 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976265, 29.371704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 326, "y": 193 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860249, 40.397287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 327, "y": 217 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.582943, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 329, "y": 218 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532917, 25.286611 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 329, "y": 201 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422367, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 333, "y": 220 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366531, 24.466838 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 334, "y": 262 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449886, -4.616465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 334, "y": 218 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277882, 25.231963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 337, "y": 285 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499866, -20.166511 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 339, "y": 221 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593178, 23.613385 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 339, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383236, 37.950018 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 353, "y": 196 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773727, 38.560113 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 354, "y": 203 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181252, 34.518721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 354, "y": 191 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292831, 41.313661 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 357, "y": 171 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.181172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 357, "y": 170 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.181172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 359, "y": 228 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.854977, 19.018954 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 360, "y": 250 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.166835 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 360, "y": 205 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164654, 33.702064 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 362, "y": 188 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583092, 42.875084 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 365, "y": 213 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199898, 28.600047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 366, "y": 237 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972107 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 369, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857731, 6.932050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 377, "y": 214 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314674, 27.718789 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 380, "y": 186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.807031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 381, "y": 223 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322697, 22.497015 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 383, "y": 215 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638996, 27.473095 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 384, "y": 221 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 392, "y": 231 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164703, 16.785313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 392, "y": 227 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.768642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 398, "y": 236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514603, 13.752058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 400, "y": 251 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 401, "y": 230 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966813 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 401, "y": 229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966813 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 403, "y": 254 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.295075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 403, "y": 210 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 404, "y": 210 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.672024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 405, "y": 239 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914627, 11.552017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 406, "y": 225 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847950, 21.035320 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 407, "y": 264 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827450, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 408, "y": 178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914654, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 418, "y": 223 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.182968, 22.307044 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 419, "y": 249 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933128, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 421, "y": 193 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386242, 39.930932 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 427, "y": 232 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569801, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 428, "y": 235 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 428, "y": 234 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 428, "y": 219 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568184, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 428, "y": 209 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434460, 31.218527 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 434, "y": 268 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579395, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 434, "y": 195 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752602, 39.021451 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 436, "y": 198 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997662, 37.568392 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 447, "y": 245 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 448, "y": 203 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458164, 34.752050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 449, "y": 202 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747929, 35.031964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 454, "y": 201 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749355, 35.687000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 462, "y": 314 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973011, -37.818056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 465, "y": 269 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192421, -9.464640 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 468, "y": 309 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128933, -35.282902 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 470, "y": 307 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183205, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 471, "y": 307 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183205, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 480, "y": 246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149910, 6.916713 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 483, "y": 269 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949608, -9.437886 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 495, "y": 281 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316555, -17.733318 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 499, "y": 245 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379852, 7.103107 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 502, "y": 254 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017502, 1.338322 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 504, "y": 320 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783211, -41.299863 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 504, "y": 312 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762955, -36.848032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 509, "y": 282 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441658, -18.132964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 510, "y": 268 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216537, -8.516515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 13, "y": 573 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220604, -21.138467 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 23, "y": 551 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738710, -13.841497 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 161, "y": 350 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123608, 49.275365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.769222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 175, "y": 409 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181992, 33.991979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 213, "y": 388 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.986038, 39.741184 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 226, "y": 436 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331955, 25.672009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 230, "y": 455 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132986, 19.444417 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 240, "y": 423 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821955 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 254, "y": 469 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528975, 14.623119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 258, "y": 472 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.205036, 13.711953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 259, "y": 462 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767128, 17.252056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 380 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752008, 41.831968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 471 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219515, 14.104030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 266, "y": 477 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270485, 12.154969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 271, "y": 409 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401951, 33.831995 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 272, "y": 483 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086008, 9.936979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 277, "y": 444 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366133, 23.133967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 283, "y": 436 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226116, 25.789613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 285, "y": 486 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535007, 8.970032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 286, "y": 373 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.421968, 43.701947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 288, "y": 512 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502035, -0.213031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 291, "y": 438 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350101, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 292, "y": 546 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052011, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 292, "y": 438 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350101, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 292, "y": 391 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901521 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 293, "y": 460 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767483, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 293, "y": 459 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767483, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 296, "y": 366 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 301, "y": 498 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085360, 4.598413 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 301, "y": 384 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.982019, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 306, "y": 458 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338018, 18.543012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 308, "y": 611 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 310, "y": 613 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669041, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 311, "y": 613 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669041, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 313, "y": 458 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902058, 18.472038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 318, "y": 559 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151970, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 321, "y": 481 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919012, 10.503003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 326, "y": 567 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259562, -19.040943 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 333, "y": 462 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717085, 17.302050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 336, "y": 481 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517086, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 336, "y": 477 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741705, 12.052667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 336, "y": 462 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850109, 17.118070 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 337, "y": 481 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517086, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 337, "y": 474 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212130, 13.148358 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 337, "y": 467 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387053, 15.301075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 338, "y": 471 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000042, 14.002034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 342, "y": 474 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616537, 13.102050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 345, "y": 617 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399544, -34.600503 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 345, "y": 616 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399544, -34.600503 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 346, "y": 492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167114, 6.802012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 348, "y": 586 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643461, -25.294449 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 352, "y": 617 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173010, -34.856073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 355, "y": 495 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167074, 5.835043 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 375, "y": 557 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918072, -15.781351 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 379, "y": 580 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627007, -23.556670 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 389, "y": 579 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226995, -22.923061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 389, "y": 578 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226995, -22.923061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 445, "y": 469 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516750, 14.916754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 449, "y": 272 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950083, 64.150037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 462, "y": 469 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475128, 14.717859 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 464, "y": 473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591759, 13.453904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 466, "y": 459 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975409, 18.086465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 467, "y": 478 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598440, 11.865083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 467, "y": 477 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598440, 11.865083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 473, "y": 484 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682184, 9.533548 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 474, "y": 487 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236208, 8.472033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 474, "y": 431 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.150047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 481, "y": 494 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799732, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 481, "y": 493 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799732, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 484, "y": 435 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652605, 26.119223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 484, "y": 434 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652605, 26.119223 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 485, "y": 392 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146891, 38.724693 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 486, "y": 392 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146891, 38.724693 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 489, "y": 475 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001995, 12.651979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 490, "y": 410 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.601967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 492, "y": 408 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836414, 34.025348 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 494, "y": 331 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 496, "y": 492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275583, 6.818461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 497, "y": 492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275583, 6.818461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 500, "y": 496 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042025, 5.321987 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 501, "y": 386 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685312, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 507, "y": 476 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526670, 12.372281 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 496 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218697, 5.552004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 340 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118704, 51.501958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 515, "y": 494 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220770, 6.133898 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 516, "y": 378 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516457, 42.500010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 517, "y": 473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 518, "y": 473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 518, "y": 352 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331333, 48.868667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 519, "y": 493 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518015, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 520, "y": 399 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048534, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 521, "y": 493 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389540, 6.445209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 524, "y": 343 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331360, 50.835270 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 524, "y": 337 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269905, 52.080086 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 525, "y": 336 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914665, 52.351961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 529, "y": 363 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.139984, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 529, "y": 349 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129942, 49.611711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 529, "y": 348 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129942, 49.611711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 531, "y": 511 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733246, 0.333450 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 533, "y": 486 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531300, 9.085316 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 533, "y": 373 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406845, 43.739662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 533, "y": 360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466927, 46.916738 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 536, "y": 501 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783226, 3.750095 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 537, "y": 501 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783226, 3.750095 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 538, "y": 510 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457941, 0.385463 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 539, "y": 359 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516649, 47.133746 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 540, "y": 399 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179605, 36.802825 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 542, "y": 297 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747976, 59.918678 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 544, "y": 501 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 544, "y": 500 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 547, "y": 380 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453346, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 547, "y": 372 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441759, 43.936102 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 547, "y": 320 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561493, 55.680536 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 549, "y": 537 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232431, -8.836308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 549, "y": 412 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179989, 32.892561 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 550, "y": 335 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399544, 52.523794 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 553, "y": 402 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514656, 35.899758 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 553, "y": 364 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514914, 46.055305 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 553, "y": 346 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464016, 50.085289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 554, "y": 477 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047150, 12.115110 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 555, "y": 524 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.257228 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 557, "y": 365 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999956, 45.800025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 558, "y": 355 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364651, 48.201967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 560, "y": 577 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083483, -22.569951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 560, "y": 355 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116957, 48.150054 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 563, "y": 301 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095341, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 563, "y": 300 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095341, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 564, "y": 614 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432999, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 564, "y": 499 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558226, 4.366694 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 564, "y": 372 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382959, 43.850065 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 566, "y": 378 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266243, 42.466019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 566, "y": 358 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081364, 47.501953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 568, "y": 382 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818821, 41.327584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 570, "y": 369 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.465984, 44.820629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 571, "y": 337 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998049, 52.251977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 572, "y": 380 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433382, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 572, "y": 377 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165934, 42.666722 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 578, "y": 377 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685338 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 579, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731327, 37.985340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 580, "y": 313 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099884, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 582, "y": 300 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727993, 59.433903 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 582, "y": 296 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932098, 60.177550 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 583, "y": 325 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683408 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 584, "y": 325 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683408 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 585, "y": 584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 586, "y": 598 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.119924 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 586, "y": 370 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097937, 44.435373 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 590, "y": 599 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483244, -29.316638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 590, "y": 329 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564611, 53.901961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 591, "y": 589 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028011, -26.168072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 592, "y": 587 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 592, "y": 556 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281298, -15.414629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 594, "y": 383 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.106972 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 594, "y": 360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857651, 47.005075 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 595, "y": 521 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359932, -3.376083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 597, "y": 517 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058508, -1.951584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 598, "y": 345 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514612, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 600, "y": 590 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199970, -26.466654 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 600, "y": 589 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133280, -26.316575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 600, "y": 563 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042728, -17.815787 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 600, "y": 422 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247950, 30.051934 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 601, "y": 498 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.579943, 4.830056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 604, "y": 588 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587166, -25.953260 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 604, "y": 511 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581329, 0.318688 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 604, "y": 467 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532148, 15.590053 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 605, "y": 387 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862425, 39.929221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 606, "y": 405 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366594, 35.166722 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 608, "y": 552 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783216, -13.983212 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 610, "y": 415 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.768038, 32.081993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 612, "y": 416 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206547, 31.778453 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 612, "y": 409 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507727, 33.873979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 613, "y": 529 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749941, -6.183222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 613, "y": 409 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507727, 33.873979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 614, "y": 416 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931301, 31.952017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 614, "y": 415 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931301, 31.952017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 615, "y": 410 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.297970, 33.502039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 616, "y": 515 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814671, -1.281345 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 618, "y": 320 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613497, 55.754120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 619, "y": 320 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613497, 55.754120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 622, "y": 486 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.698053, 9.035308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 622, "y": 467 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933315, 15.333359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 623, "y": 531 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266338, -6.798007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 634, "y": 545 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240213, -11.704098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 634, "y": 478 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147945, 11.595068 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 635, "y": 545 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240213, -11.704098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 637, "y": 484 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065304, 9.560041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 637, "y": 467 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204607, 15.356701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 638, "y": 411 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391890, 33.340639 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 638, "y": 387 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511538, 40.183136 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 638, "y": 386 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511538, 40.183136 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 639, "y": 381 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788771, 41.726999 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 641, "y": 506 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364695, 2.068671 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 645, "y": 439 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770773, 24.642804 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 647, "y": 566 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514668, -18.914650 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 648, "y": 424 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976351, 29.371704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 653, "y": 386 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860249, 40.397222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 655, "y": 434 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.583029, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 658, "y": 437 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532917, 25.286611 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 658, "y": 403 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422367, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 666, "y": 440 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366531, 24.466760 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 669, "y": 525 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449972, -4.616550 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 669, "y": 437 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277967, 25.231963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 675, "y": 570 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499952, -20.166591 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 678, "y": 442 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593264, 23.613385 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 678, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383236, 37.950018 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 707, "y": 392 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773813, 38.560046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 708, "y": 407 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181252, 34.518651 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 709, "y": 382 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292917, 41.313661 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 715, "y": 342 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427698, 51.181172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 715, "y": 341 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427698, 51.181172 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 719, "y": 456 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.854977, 19.018954 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 720, "y": 410 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164654, 33.701993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 721, "y": 500 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.166750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 724, "y": 376 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583178, 42.875084 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 731, "y": 427 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199898, 28.600047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 732, "y": 474 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 739, "y": 492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857731, 6.932050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 754, "y": 429 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314674, 27.718713 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 761, "y": 373 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.806969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 763, "y": 446 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322697, 22.496936 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 766, "y": 430 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638996, 27.473019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 769, "y": 442 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406580, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 785, "y": 463 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164703, 16.785313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 785, "y": 454 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.768561 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 797, "y": 472 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751974 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 801, "y": 503 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 801, "y": 502 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 803, "y": 460 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966732 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 807, "y": 508 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853846, 1.294989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 807, "y": 420 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.671950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 808, "y": 420 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.671950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 810, "y": 478 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914627, 11.552017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 813, "y": 450 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848036, 21.035320 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 815, "y": 529 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827450, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 816, "y": 356 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914654, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 836, "y": 446 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.183054, 22.306964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 838, "y": 498 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933214, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 843, "y": 387 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386328, 39.930867 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 854, "y": 464 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569887, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 856, "y": 470 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 856, "y": 469 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606176 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 857, "y": 438 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568270, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 857, "y": 418 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434546, 31.218454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 869, "y": 536 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579395, -8.559379 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 869, "y": 391 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752687, 39.021451 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 873, "y": 396 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997747, 37.568324 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 894, "y": 490 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 897, "y": 406 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458164, 34.752050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 898, "y": 405 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748014, 35.031964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 909, "y": 403 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749441, 35.687000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 924, "y": 628 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973011, -37.818056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 930, "y": 539 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192421, -9.464640 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 936, "y": 619 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.129019, -35.282972 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 942, "y": 614 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183205, -33.918007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 961, "y": 492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149910, 6.916713 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 966, "y": 538 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949694, -9.437970 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 990, "y": 563 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316555, -17.733318 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 999, "y": 491 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379938, 7.103022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 1004, "y": 508 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017502, 1.338236 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 1009, "y": 641 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783211, -41.299927 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 1009, "y": 624 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762955, -36.848032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 1019, "y": 564 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441658, -18.132964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 1021, "y": 536 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216623, -8.516600 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 27, "y": 1147 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220604, -21.138507 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 46, "y": 1103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738667, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 47, "y": 1103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738667, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 323, "y": 700 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123608, 49.275365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.769222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 351, "y": 818 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181949, 33.991943 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 426, "y": 777 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985995, 39.741151 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 453, "y": 872 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331955, 25.671971 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 460, "y": 911 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132943, 19.444417 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 481, "y": 846 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821955 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 508, "y": 939 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528932, 14.623119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 509, "y": 939 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528932, 14.623119 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 516, "y": 945 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.204993, 13.711953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 518, "y": 924 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767085, 17.252056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 519, "y": 924 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767085, 17.252056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 524, "y": 761 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752008, 41.831968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 527, "y": 942 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219515, 14.104030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 533, "y": 954 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270442, 12.154969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 543, "y": 819 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401908, 33.831995 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 545, "y": 967 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086008, 9.936979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 555, "y": 888 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366133, 23.133927 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 567, "y": 872 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226073, 25.789575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 571, "y": 972 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535007, 8.969990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 572, "y": 747 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.421968, 43.701947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 577, "y": 1025 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502035, -0.213031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 583, "y": 876 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350059, 25.083422 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 585, "y": 1093 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052011, -12.046036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 585, "y": 783 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011371, 38.901521 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 587, "y": 920 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767440, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 587, "y": 919 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767440, 17.977100 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 593, "y": 733 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418666 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 602, "y": 997 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085317, 4.598370 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 603, "y": 769 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981977, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 612, "y": 916 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.338018, 18.542971 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 616, "y": 1223 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045796 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 621, "y": 1226 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.668998, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 626, "y": 917 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902058, 18.472038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 636, "y": 1119 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151970, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 643, "y": 963 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.919012, 10.502961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 652, "y": 1134 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040943 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 667, "y": 924 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717042, 17.302050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 672, "y": 954 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741662, 12.052667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 672, "y": 925 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850066, 17.118070 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 674, "y": 963 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517043, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 674, "y": 935 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387053, 15.301033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 675, "y": 948 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212087, 13.148317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 676, "y": 943 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000042, 14.001992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 684, "y": 948 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616537, 13.102009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 691, "y": 1234 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399501, -34.600539 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 693, "y": 985 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167071, 6.802012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 696, "y": 1172 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643461, -25.294449 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 704, "y": 1235 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173010, -34.856073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 710, "y": 990 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835043 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 751, "y": 1114 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918029, -15.781393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 758, "y": 1161 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.627007, -23.556710 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 778, "y": 1158 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226995, -22.923061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 890, "y": 938 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516707, 14.916712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 899, "y": 544 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950040, 64.150037 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 924, "y": 939 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475085, 14.717818 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 929, "y": 946 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591716, 13.453904 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 933, "y": 919 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975366, 18.086465 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 935, "y": 956 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598397, 11.865041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 935, "y": 955 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598397, 11.865041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 946, "y": 969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682184, 9.533506 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 948, "y": 975 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236165, 8.471990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 948, "y": 863 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200030, 27.150009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 962, "y": 988 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799689, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 962, "y": 987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799689, 6.314616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 969, "y": 869 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652562, 26.119184 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 971, "y": 784 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146848, 38.724693 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 978, "y": 951 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001995, 12.651979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 980, "y": 820 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.601931 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 985, "y": 817 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836414, 34.025312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 988, "y": 663 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250877, 53.335025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 993, "y": 985 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275540, 6.818418 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 994, "y": 985 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275540, 6.818418 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1000, "y": 993 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042025, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1001, "y": 993 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042025, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1003, "y": 772 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685312, 40.401993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1015, "y": 953 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526670, 12.372281 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1022, "y": 992 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218697, 5.552004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 681 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118704, 51.501958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1030, "y": 989 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220770, 6.133898 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1032, "y": 756 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516457, 42.500010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1036, "y": 946 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1037, "y": 704 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331376, 48.868667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1038, "y": 987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518015, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1041, "y": 798 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048577, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1043, "y": 987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389583, 6.445209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1048, "y": 687 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331360, 50.835270 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1048, "y": 675 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269948, 52.080060 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1051, "y": 673 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914665, 52.351935 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1058, "y": 726 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.140027, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1058, "y": 698 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129985, 49.611683 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1058, "y": 697 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129985, 49.611683 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1062, "y": 1022 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733289, 0.333407 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1066, "y": 972 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531343, 9.085316 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1066, "y": 746 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406888, 43.739662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1066, "y": 721 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466969, 46.916708 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1073, "y": 1002 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783269, 3.750052 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1077, "y": 1021 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457941, 0.385420 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1078, "y": 719 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516649, 47.133746 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1081, "y": 798 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179648, 36.802790 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1085, "y": 595 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.748019, 59.918656 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1089, "y": 1001 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868665 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1094, "y": 761 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453346, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1094, "y": 760 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453346, 41.903299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1094, "y": 745 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441759, 43.936102 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1095, "y": 761 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481284, 41.897933 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1095, "y": 640 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561536, 55.680512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1098, "y": 825 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.179989, 32.892525 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1099, "y": 1074 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232474, -8.836308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1100, "y": 671 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399587, 52.523768 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1106, "y": 804 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514699, 35.899758 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1106, "y": 728 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514956, 46.055305 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1106, "y": 693 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464016, 50.085289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1109, "y": 954 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047193, 12.115068 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1110, "y": 1048 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282712, -4.257228 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1111, "y": 1048 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313010, -4.327754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1115, "y": 730 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999956, 45.800025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1117, "y": 710 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364651, 48.201967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1121, "y": 1155 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083526, -22.569991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1121, "y": 710 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116957, 48.150025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1126, "y": 602 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095384, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1128, "y": 1229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.433042, -33.918043 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1128, "y": 745 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382959, 43.850034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1129, "y": 999 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558269, 4.366652 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1132, "y": 716 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081364, 47.501953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1133, "y": 756 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266286, 42.465987 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1136, "y": 765 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818864, 41.327552 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1140, "y": 738 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.466027, 44.820599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1143, "y": 674 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998049, 52.251950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1144, "y": 755 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165977, 42.666722 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1145, "y": 760 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433425, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1156, "y": 754 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685306 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1158, "y": 790 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985306 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1159, "y": 790 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985306 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1161, "y": 627 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099927, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1164, "y": 601 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.728036, 59.433881 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1165, "y": 592 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932141, 60.177529 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1168, "y": 650 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683384 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1171, "y": 1168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646276 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1172, "y": 741 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097980, 44.435343 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1173, "y": 1197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229901, -29.119962 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1180, "y": 1198 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483244, -29.316638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1180, "y": 658 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564654, 53.901936 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1183, "y": 1178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028054, -26.168072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1184, "y": 1175 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1184, "y": 1112 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281341, -15.414671 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1188, "y": 720 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857694, 47.005046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1189, "y": 767 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008026, 41.106972 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1191, "y": 1043 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359975, -3.376083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1194, "y": 1035 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058551, -1.951627 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1195, "y": 1035 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058551, -1.951627 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1197, "y": 690 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514655, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1200, "y": 1127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042728, -17.815828 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1201, "y": 1180 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199970, -26.466654 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1201, "y": 1179 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133323, -26.316613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1201, "y": 844 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247993, 30.051934 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1203, "y": 996 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.579986, 4.830013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1209, "y": 1176 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587209, -25.953299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1209, "y": 1022 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581372, 0.318645 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1209, "y": 934 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532191, 15.590053 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1210, "y": 775 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862425, 39.929188 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1213, "y": 810 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366594, 35.166687 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1216, "y": 1104 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783259, -13.983254 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1221, "y": 831 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.768038, 32.081956 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1224, "y": 833 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206590, 31.778416 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1225, "y": 818 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507727, 33.873943 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1226, "y": 818 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507727, 33.873943 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1227, "y": 1059 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749984, -6.183265 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1228, "y": 832 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1228, "y": 831 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1230, "y": 821 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298013, 33.502004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1233, "y": 1031 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814671, -1.281388 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1237, "y": 640 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613540, 55.754120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1244, "y": 972 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.698053, 9.035265 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1245, "y": 935 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933315, 15.333359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1247, "y": 1062 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266381, -6.798049 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1269, "y": 1091 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240213, -11.704140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1269, "y": 957 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147988, 11.595026 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1270, "y": 1091 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240213, -11.704140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1274, "y": 969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065304, 9.560041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1275, "y": 935 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204607, 15.356701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1276, "y": 822 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391890, 33.340603 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1277, "y": 773 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511580, 40.183103 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1278, "y": 762 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788814, 41.726967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1282, "y": 1012 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364695, 2.068628 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1290, "y": 879 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770773, 24.642804 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1294, "y": 1133 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514668, -18.914690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1296, "y": 849 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976351, 29.371667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1307, "y": 772 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860249, 40.397222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1311, "y": 869 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.583029, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1316, "y": 806 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422367, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1317, "y": 875 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532960, 25.286572 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1333, "y": 880 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366574, 24.466721 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1338, "y": 875 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.278010, 25.231963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1339, "y": 1050 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449972, -4.616593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1351, "y": 1141 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499952, -20.166632 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1356, "y": 790 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383279, 37.950018 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1357, "y": 885 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593307, 23.613346 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1415, "y": 785 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773856, 38.560046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1417, "y": 814 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181294, 34.518651 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1418, "y": 765 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292960, 41.313661 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1430, "y": 684 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427741, 51.181145 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1430, "y": 683 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427741, 51.181145 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1438, "y": 913 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855020, 19.018954 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1440, "y": 820 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164654, 33.701957 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1442, "y": 1000 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499908, 4.166750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1448, "y": 753 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583220, 42.875052 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1463, "y": 854 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199941, 28.600047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1465, "y": 949 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.558026, 12.971982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1478, "y": 984 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857731, 6.932008 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1509, "y": 859 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314674, 27.718675 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1522, "y": 746 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.806969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1526, "y": 892 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322697, 22.496936 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1533, "y": 861 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638996, 27.473019 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1538, "y": 885 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1538, "y": 884 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1570, "y": 909 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.768521 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1571, "y": 927 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164703, 16.785313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1595, "y": 945 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751974 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1595, "y": 944 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751974 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1602, "y": 1007 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.701941, 2.914025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1602, "y": 1005 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1607, "y": 920 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599945, 17.966732 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1614, "y": 1016 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853846, 1.294989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1616, "y": 840 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.068036, 30.671950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1620, "y": 957 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914670, 11.552017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1626, "y": 901 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848036, 21.035280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1631, "y": 1059 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827450, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1632, "y": 712 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914654, 47.918643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1673, "y": 893 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.183054, 22.306964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1677, "y": 996 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933257, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1686, "y": 775 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386328, 39.930867 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1709, "y": 929 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569930, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1712, "y": 940 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1712, "y": 939 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980244, 14.606135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1714, "y": 836 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434546, 31.218417 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1715, "y": 876 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568313, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1738, "y": 1072 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579438, -8.559379 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1739, "y": 782 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752730, 39.021418 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1746, "y": 793 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997747, 37.568324 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1789, "y": 981 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626508, 7.487410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1794, "y": 812 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458164, 34.752015 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1796, "y": 811 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748014, 35.031964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1796, "y": 810 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748014, 35.031964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1818, "y": 806 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749441, 35.686965 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1819, "y": 806 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749441, 35.686965 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1848, "y": 1256 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973054, -37.818056 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1861, "y": 1078 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192464, -9.464682 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1872, "y": 1238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.129019, -35.283007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1884, "y": 1229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183205, -33.918043 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1923, "y": 984 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149953, 6.916671 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1933, "y": 1077 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949737, -9.437970 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1981, "y": 1126 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316598, -17.733318 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1998, "y": 983 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379981, 7.103022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 2008, "y": 1016 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017545, 1.338193 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 2018, "y": 1282 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783254, -41.299960 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 2018, "y": 1249 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762998, -36.848067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 2039, "y": 1128 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441701, -18.133005 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 2043, "y": 1072 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216623, -8.516642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 54, "y": 2294 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220582, -21.138507 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 93, "y": 2207 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 94, "y": 2207 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 647, "y": 1401 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123608, 49.275365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.769205 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 703, "y": 1636 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181927, 33.991925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 853, "y": 1554 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985974, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 906, "y": 1745 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331933, 25.671951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 920, "y": 1822 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132943, 19.444397 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 963, "y": 1692 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821936 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1017, "y": 1879 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528932, 14.623098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1018, "y": 1879 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528932, 14.623098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1033, "y": 1890 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.204993, 13.711953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1038, "y": 1848 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767085, 17.252035 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1049, "y": 1523 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752008, 41.831952 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1055, "y": 1885 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219493, 14.104009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1066, "y": 1908 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270442, 12.154969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1087, "y": 1638 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401908, 33.831977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1091, "y": 1934 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086008, 9.936958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1110, "y": 1777 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366133, 23.133908 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1135, "y": 1744 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226073, 25.789575 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1143, "y": 1945 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.534986, 8.969969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1144, "y": 1494 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.421968, 43.701932 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1154, "y": 2050 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502014, -0.213031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1167, "y": 1753 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350059, 25.083403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 2186 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052011, -12.046057 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 1566 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011371, 38.901504 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1174, "y": 1840 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767440, 17.977080 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1186, "y": 1466 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701981, 45.418651 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1205, "y": 1995 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085295, 4.598370 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1206, "y": 1539 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981977, 40.751939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1224, "y": 1833 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.337997, 18.542971 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1233, "y": 2446 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045814 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1243, "y": 2452 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.668998, -33.448058 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1252, "y": 1834 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902036, 18.472038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1272, "y": 2238 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151948, -16.496007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1286, "y": 1927 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.918991, 10.502961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1305, "y": 2268 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1334, "y": 1848 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717021, 17.302050 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1344, "y": 1850 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850045, 17.118049 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1345, "y": 1909 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741662, 12.052646 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1348, "y": 1926 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517043, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1349, "y": 1871 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387031, 15.301033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1351, "y": 1897 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212065, 13.148296 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1353, "y": 1887 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000021, 14.001992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1369, "y": 1897 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616537, 13.102009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1383, "y": 2468 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399479, -34.600539 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1386, "y": 1970 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167050, 6.801991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1392, "y": 2345 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643461, -25.294449 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1408, "y": 2471 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173010, -34.856091 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1420, "y": 1981 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835043 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1502, "y": 2229 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918007, -15.781393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1517, "y": 2323 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.626985, -23.556729 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1556, "y": 2316 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226974, -22.923061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1780, "y": 1876 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516707, 14.916712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1798, "y": 1088 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950018, 64.150028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1849, "y": 1878 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475085, 14.717797 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1859, "y": 1893 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591716, 13.453883 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1866, "y": 1838 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975344, 18.086444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1870, "y": 1912 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598376, 11.865041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1892, "y": 1939 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682184, 9.533485 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1897, "y": 1951 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236165, 8.471969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1897, "y": 1726 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200009, 27.149990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1925, "y": 1976 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799668, 6.314595 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1925, "y": 1975 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799668, 6.314595 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1938, "y": 1739 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652541, 26.119184 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1943, "y": 1569 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146826, 38.724676 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1956, "y": 1902 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001995, 12.651979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1961, "y": 1641 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618332, 33.601931 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1970, "y": 1635 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836414, 34.025312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1976, "y": 1327 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250856, 53.335012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1987, "y": 1970 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275519, 6.818397 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2001, "y": 1987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042003, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2002, "y": 1987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042003, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2006, "y": 1544 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685312, 40.401977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2030, "y": 1906 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526670, 12.372281 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2045, "y": 1984 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218675, 5.551982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2046, "y": 1362 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118682, 51.501944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2061, "y": 1978 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220791, 6.133898 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2065, "y": 1512 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516478, 42.500010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2072, "y": 1892 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114697, 13.518672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2074, "y": 1408 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331376, 48.868653 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2076, "y": 1975 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518036, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2076, "y": 1974 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518036, 6.401966 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2077, "y": 1974 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.616613, 6.483331 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2082, "y": 1597 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048599, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2086, "y": 1974 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389583, 6.445209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2096, "y": 1351 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269948, 52.080047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2097, "y": 1374 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331360, 50.835270 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2103, "y": 1346 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914687, 52.351922 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2117, "y": 1453 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.140027, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2117, "y": 1396 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129985, 49.611669 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2117, "y": 1395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129985, 49.611669 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2124, "y": 2044 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733310, 0.333407 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2132, "y": 1493 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406909, 43.739647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2132, "y": 1442 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466969, 46.916694 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2133, "y": 1944 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531364, 9.085295 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2147, "y": 2005 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783269, 3.750031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2155, "y": 2043 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457963, 0.385398 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2156, "y": 1438 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516649, 47.133732 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2163, "y": 1597 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179670, 36.802790 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2170, "y": 1191 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.748019, 59.918645 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2178, "y": 2003 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868665 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2179, "y": 2003 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868665 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2189, "y": 1522 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453368, 41.903283 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2189, "y": 1521 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453368, 41.903283 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2189, "y": 1490 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441759, 43.936102 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2190, "y": 1522 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481306, 41.897917 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2190, "y": 1281 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561536, 55.680512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2197, "y": 1651 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.180010, 32.892507 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2198, "y": 2148 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232474, -8.836329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2200, "y": 1343 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399587, 52.523768 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2212, "y": 1387 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464016, 50.085289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2213, "y": 1609 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514699, 35.899741 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2213, "y": 1456 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514956, 46.055290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2219, "y": 1909 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047193, 12.115047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2221, "y": 2096 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282733, -4.257228 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2222, "y": 2097 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313010, -4.327775 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2230, "y": 1460 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999978, 45.800010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2234, "y": 1420 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364672, 48.201967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2242, "y": 2311 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083526, -22.569991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2242, "y": 1421 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116978, 48.150025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2253, "y": 1204 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095384, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2257, "y": 2458 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.433042, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2257, "y": 1491 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382981, 43.850034 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2259, "y": 1998 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558269, 4.366652 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2265, "y": 1432 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081364, 47.501953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2267, "y": 1513 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266286, 42.465987 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2273, "y": 1530 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818864, 41.327552 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2280, "y": 1476 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.466027, 44.820599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2286, "y": 1348 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998049, 52.251950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2288, "y": 1510 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165977, 42.666722 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2291, "y": 1520 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433446, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2313, "y": 1509 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685306 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2317, "y": 1580 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2318, "y": 1580 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2322, "y": 1255 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099948, 56.950030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2329, "y": 1202 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.728036, 59.433881 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2331, "y": 1185 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932163, 60.177518 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2336, "y": 1301 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316620, 54.683371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2342, "y": 2337 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646296 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2344, "y": 1482 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097980, 44.435327 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2346, "y": 2394 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229901, -29.119980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2360, "y": 2397 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483265, -29.316657 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2361, "y": 1317 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564676, 53.901924 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2366, "y": 2356 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028054, -26.168091 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2369, "y": 2350 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2369, "y": 2225 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281362, -15.414691 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2376, "y": 1440 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857694, 47.005031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2378, "y": 1534 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008048, 41.106956 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2382, "y": 2086 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359996, -3.376083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2389, "y": 2070 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058572, -1.951627 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2390, "y": 2070 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058572, -1.951627 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2395, "y": 1381 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514677, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2401, "y": 2254 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042750, -17.815828 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2402, "y": 2360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199992, -26.466654 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2402, "y": 2358 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133323, -26.316632 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2403, "y": 2360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199992, -26.466654 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2403, "y": 1689 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248014, 30.051915 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2407, "y": 1992 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580007, 4.829992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2418, "y": 2353 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587209, -25.953318 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2418, "y": 2044 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581372, 0.318623 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2418, "y": 1868 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532213, 15.590032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2421, "y": 1551 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862425, 39.929188 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2427, "y": 1620 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366616, 35.166687 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2432, "y": 2208 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783281, -13.983274 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2443, "y": 1662 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.768059, 32.081938 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2448, "y": 1666 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206611, 31.778416 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2451, "y": 1637 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507748, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2452, "y": 1637 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507748, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2454, "y": 2118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749984, -6.183286 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2456, "y": 1664 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2456, "y": 1663 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2460, "y": 1643 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298034, 33.501986 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2461, "y": 1643 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298034, 33.501986 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2466, "y": 2062 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814692, -1.281388 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2475, "y": 1280 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613561, 55.754120 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2488, "y": 1944 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.698053, 9.035265 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2490, "y": 1871 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933315, 15.333359 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2494, "y": 2125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266381, -6.798049 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2538, "y": 1915 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147988, 11.595026 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2539, "y": 2182 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240235, -11.704140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2549, "y": 1938 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065304, 9.560041 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2550, "y": 1871 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204628, 15.356680 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2553, "y": 1645 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391911, 33.340603 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2554, "y": 1547 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511602, 40.183103 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2557, "y": 1524 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788835, 41.726967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2564, "y": 2024 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364716, 2.068628 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2580, "y": 1758 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770794, 24.642785 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2588, "y": 2267 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514668, -18.914690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2593, "y": 1698 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976351, 29.371667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2615, "y": 1544 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860270, 40.397222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2623, "y": 1738 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.583050, 26.236150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2633, "y": 1613 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422389, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2633, "y": 1612 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422389, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2634, "y": 1750 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532960, 25.286572 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2666, "y": 1760 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366574, 24.466701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2676, "y": 1751 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.278010, 25.231944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2678, "y": 2100 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449972, -4.616614 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2702, "y": 2282 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499974, -20.166632 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2712, "y": 1580 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383279, 37.950001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2714, "y": 1771 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593307, 23.613326 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2830, "y": 1571 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773878, 38.560046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2835, "y": 1629 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181294, 34.518651 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2836, "y": 1530 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292982, 41.313661 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2860, "y": 1367 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427763, 51.181132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2876, "y": 1827 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855041, 19.018954 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2880, "y": 1640 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164675, 33.701957 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2884, "y": 2000 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499930, 4.166728 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2896, "y": 1507 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583242, 42.875036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2896, "y": 1506 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583242, 42.875036 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2926, "y": 1708 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199962, 28.600028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2930, "y": 1899 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.558048, 12.971961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2956, "y": 1968 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857731, 6.931986 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2957, "y": 1969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.949977, 6.900013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3018, "y": 1719 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314696, 27.718656 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3044, "y": 1492 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.806969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3052, "y": 1785 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322718, 22.496916 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3067, "y": 1722 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.638996, 27.473000 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3076, "y": 1770 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3076, "y": 1769 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3141, "y": 1818 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116660, 19.768521 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3142, "y": 1854 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164725, 16.785313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3191, "y": 1890 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3191, "y": 1889 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3205, "y": 2014 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.701941, 2.914025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3205, "y": 2011 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168626 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3215, "y": 1840 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599967, 17.966711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3229, "y": 2033 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853867, 1.294989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3232, "y": 1681 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.068058, 30.671950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3241, "y": 1915 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914670, 11.551996 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3252, "y": 1803 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848057, 21.035280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3263, "y": 2118 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827471, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3264, "y": 1425 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914654, 47.918629 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3347, "y": 1787 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.183054, 22.306944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3355, "y": 1992 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933279, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3372, "y": 1551 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386328, 39.930850 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3419, "y": 1858 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569930, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3424, "y": 1880 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980265, 14.606114 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3424, "y": 1879 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980265, 14.606114 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3429, "y": 1673 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434546, 31.218399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3431, "y": 1753 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568313, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3476, "y": 2145 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579438, -8.559379 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3478, "y": 1565 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752730, 39.021401 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3492, "y": 1586 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997769, 37.568307 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3579, "y": 1962 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626529, 7.487410 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3589, "y": 1625 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458186, 34.751997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3592, "y": 1621 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748036, 35.031947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3638, "y": 1612 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749441, 35.686965 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3697, "y": 2513 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973054, -37.818073 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3722, "y": 2156 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192485, -9.464704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3744, "y": 2477 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.129019, -35.283025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3768, "y": 2458 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183226, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3847, "y": 1969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149953, 6.916650 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3867, "y": 2155 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949758, -9.437992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3963, "y": 2253 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316619, -17.733338 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3997, "y": 1966 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379981, 7.103022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 4016, "y": 2032 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017566, 1.338193 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 4036, "y": 2564 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783254, -41.299960 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 4036, "y": 2499 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.763019, -36.848067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 4078, "y": 2257 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441701, -18.133005 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 4087, "y": 2145 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216645, -8.516642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 108, "y": 4588 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220572, -21.138507 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 187, "y": 4414 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 188, "y": 4414 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841538 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1294, "y": 2803 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123597, 49.275365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.769197 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1406, "y": 3272 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181927, 33.991925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1706, "y": 3109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1706, "y": 3108 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1707, "y": 3109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1707, "y": 3108 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1812, "y": 3491 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331933, 25.671942 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1840, "y": 3644 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132943, 19.444397 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1926, "y": 3384 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821927 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2035, "y": 3759 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528921, 14.623088 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2066, "y": 3780 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.204993, 13.711953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2076, "y": 3697 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767074, 17.252035 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2099, "y": 3046 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752008, 41.831944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2111, "y": 3771 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219483, 14.103999 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2132, "y": 3817 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270442, 12.154969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2175, "y": 3277 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401897, 33.831968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2182, "y": 3868 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.085997, 9.936958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2221, "y": 3554 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366133, 23.133908 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2270, "y": 3488 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226063, 25.789565 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2286, "y": 3891 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.534986, 8.969969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2288, "y": 2988 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.421968, 43.701932 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2309, "y": 4100 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502003, -0.213042 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2335, "y": 3506 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350048, 25.083393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 4372 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052011, -12.046057 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3133 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011371, 38.901495 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2349, "y": 3680 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767440, 17.977080 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2373, "y": 2933 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701970, 45.418644 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2410, "y": 3991 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085295, 4.598370 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2412, "y": 3078 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981966, 40.751930 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2449, "y": 3666 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.337986, 18.542971 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2466, "y": 4893 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045814 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2487, "y": 4904 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.668987, -33.448067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2505, "y": 3668 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902036, 18.472028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2545, "y": 4476 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151938, -16.496018 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2573, "y": 3855 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.918991, 10.502950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2610, "y": 4537 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2611, "y": 4537 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2668, "y": 3696 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717010, 17.302040 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2688, "y": 3700 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850034, 17.118039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2691, "y": 3819 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741651, 12.052636 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2696, "y": 3852 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517032, 10.652004 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2699, "y": 3743 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387020, 15.301023 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2703, "y": 3794 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212065, 13.148285 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2707, "y": 3774 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000010, 14.001982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2739, "y": 3795 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616537, 13.102009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2767, "y": 4936 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399479, -34.600548 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2772, "y": 3940 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167039, 6.801980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2784, "y": 4691 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643461, -25.294449 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2817, "y": 4943 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.172999, -34.856091 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2840, "y": 3963 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2840, "y": 3962 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3005, "y": 4459 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918007, -15.781393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3034, "y": 4647 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.626974, -23.556729 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3112, "y": 4632 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226974, -22.923071 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3560, "y": 3752 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516697, 14.916702 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3596, "y": 2176 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950018, 64.150028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3698, "y": 3757 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475085, 14.717786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3718, "y": 3787 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591705, 13.453883 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3718, "y": 3786 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591705, 13.453883 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3732, "y": 3677 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975344, 18.086434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3741, "y": 3824 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598365, 11.865031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3784, "y": 3878 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682184, 9.533474 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3794, "y": 3902 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236165, 8.471958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3795, "y": 3453 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200009, 27.149990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3850, "y": 3952 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799668, 6.314584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3850, "y": 3951 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799668, 6.314584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3876, "y": 3479 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652530, 26.119175 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3887, "y": 3138 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146816, 38.724676 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3913, "y": 3805 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001995, 12.651969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3922, "y": 3283 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618321, 33.601931 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3940, "y": 3271 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836414, 34.025312 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3953, "y": 2655 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250856, 53.335012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3975, "y": 3940 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275508, 6.818386 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4004, "y": 3974 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042003, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4012, "y": 3089 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685302, 40.401977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4061, "y": 3812 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526670, 12.372271 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4091, "y": 3969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218664, 5.551982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4093, "y": 2724 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118672, 51.501944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4123, "y": 3956 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220802, 6.133888 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4130, "y": 3025 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516478, 42.500002 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4144, "y": 3785 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114707, 13.518662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4149, "y": 2817 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331387, 48.868646 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4153, "y": 3950 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518036, 6.401955 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4153, "y": 3949 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518036, 6.401955 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4155, "y": 3948 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.616624, 6.483321 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4165, "y": 3195 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048599, 36.765017 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4173, "y": 3949 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389583, 6.445209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4193, "y": 2702 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269959, 52.080040 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4194, "y": 2748 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331371, 50.835270 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4207, "y": 2692 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914687, 52.351915 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4235, "y": 2907 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.140027, 46.210012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4235, "y": 2791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.129996, 49.611662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4249, "y": 4088 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733321, 0.333407 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4264, "y": 2987 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406909, 43.739647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4264, "y": 2986 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406909, 43.739647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4265, "y": 2884 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466969, 46.916686 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4267, "y": 3888 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531375, 9.085284 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4295, "y": 4010 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783269, 3.750020 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4311, "y": 4087 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457963, 0.385398 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4312, "y": 2876 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516660, 47.133724 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4327, "y": 3194 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179670, 36.802782 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4340, "y": 2382 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.748030, 59.918640 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4358, "y": 4007 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868654 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4379, "y": 3044 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481306, 41.897909 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4379, "y": 3043 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453378, 41.903283 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4379, "y": 2980 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441770, 43.936102 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4380, "y": 3044 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481306, 41.897909 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4381, "y": 2563 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561536, 55.680512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4395, "y": 3302 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.180010, 32.892507 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4397, "y": 4297 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232474, -8.836340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4400, "y": 2686 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399597, 52.523768 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4425, "y": 2775 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464027, 50.085289 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4426, "y": 3219 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514710, 35.899741 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4426, "y": 2912 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514967, 46.055290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4438, "y": 3818 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047193, 12.115047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4443, "y": 4192 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282733, -4.257238 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4444, "y": 4194 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313021, -4.327775 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4460, "y": 2920 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999988, 45.800010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4468, "y": 2840 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364683, 48.201967 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4484, "y": 4623 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083536, -22.570001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4485, "y": 2842 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116978, 48.150025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4507, "y": 2408 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095384, 59.352709 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4514, "y": 2983 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382992, 43.850026 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4515, "y": 4917 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.433042, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4518, "y": 3996 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558279, 4.366652 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4530, "y": 2864 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081374, 47.501953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4534, "y": 3026 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266297, 42.465979 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4546, "y": 3061 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818875, 41.327544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4547, "y": 3061 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818875, 41.327544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4561, "y": 2952 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.466038, 44.820591 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4573, "y": 2696 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998049, 52.251950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4577, "y": 3020 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165977, 42.666715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4583, "y": 3041 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433457, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4583, "y": 3040 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433457, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4626, "y": 3019 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685298 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4636, "y": 3160 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4644, "y": 2511 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099959, 56.950024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4658, "y": 2404 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.728036, 59.433881 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4663, "y": 2370 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932173, 60.177513 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4672, "y": 2603 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316631, 54.683371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4685, "y": 4675 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646305 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4685, "y": 4674 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911942, -24.646305 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4689, "y": 2964 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097990, 44.435320 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4692, "y": 4789 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229912, -29.119990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4721, "y": 4794 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483265, -29.316666 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4723, "y": 2634 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564676, 53.901924 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4733, "y": 4713 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028054, -26.168091 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4738, "y": 4701 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704969 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4739, "y": 4451 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281373, -15.414691 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4752, "y": 2881 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857704, 47.005024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4756, "y": 3068 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008048, 41.106948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4764, "y": 4172 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.359996, -3.376083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4779, "y": 4140 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058583, -1.951638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4780, "y": 4140 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058583, -1.951638 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4790, "y": 2762 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514677, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4802, "y": 4508 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042761, -17.815838 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4804, "y": 4717 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133333, -26.316642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4805, "y": 4720 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199992, -26.466664 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4807, "y": 3378 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248014, 30.051915 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4814, "y": 3985 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580018, 4.829981 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4836, "y": 3736 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532223, 15.590032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4837, "y": 4707 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587209, -25.953327 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4837, "y": 4088 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581372, 0.318613 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4843, "y": 3103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862436, 39.929188 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4855, "y": 3240 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366627, 35.166678 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4864, "y": 4417 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783292, -13.983285 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4887, "y": 3324 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.768059, 32.081938 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4897, "y": 3332 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206622, 31.778416 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4903, "y": 3275 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507759, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4904, "y": 3275 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507759, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4909, "y": 4236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749995, -6.183297 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4913, "y": 3328 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4913, "y": 3327 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931344, 31.951980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4921, "y": 3286 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298045, 33.501986 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4922, "y": 3286 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298045, 33.501986 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4933, "y": 4125 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814703, -1.281399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4951, "y": 2560 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613572, 55.754114 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4976, "y": 3889 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.698053, 9.035265 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4981, "y": 3742 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933315, 15.333349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4989, "y": 4251 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266392, -6.798060 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5077, "y": 3830 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147999, 11.595016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5079, "y": 4364 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240235, -11.704150 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5098, "y": 3877 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065304, 9.560031 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5101, "y": 3742 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204639, 15.356680 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5106, "y": 3290 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391922, 33.340603 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5108, "y": 3095 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511602, 40.183103 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5115, "y": 3049 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788846, 41.726959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5128, "y": 4048 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364727, 2.068628 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5160, "y": 3517 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770794, 24.642785 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5177, "y": 4534 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514668, -18.914690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5187, "y": 3396 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976351, 29.371667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5230, "y": 3089 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860270, 40.397222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5247, "y": 3476 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.583050, 26.236140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5266, "y": 3226 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422389, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5268, "y": 3500 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532960, 25.286562 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5333, "y": 3521 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366585, 24.466692 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5353, "y": 3502 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.278021, 25.231944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5357, "y": 4201 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449983, -4.616625 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5404, "y": 4564 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499985, -20.166632 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5424, "y": 3161 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383290, 37.950001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5429, "y": 3542 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593307, 23.613326 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5660, "y": 3143 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773878, 38.560038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5661, "y": 3143 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773878, 38.560038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5670, "y": 3258 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181305, 34.518642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5672, "y": 3061 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292982, 41.313652 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5721, "y": 2735 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427773, 51.181132 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5753, "y": 3655 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855041, 19.018944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5760, "y": 3280 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164686, 33.701948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5768, "y": 4001 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499941, 4.166718 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5793, "y": 3014 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583253, 42.875028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5852, "y": 3416 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199973, 28.600028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5860, "y": 3798 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.558059, 12.971951 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5913, "y": 3937 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857742, 6.931976 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 5915, "y": 3938 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.949988, 6.900013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6037, "y": 3439 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314696, 27.718646 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6088, "y": 2984 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573051, 43.806961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6105, "y": 3570 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322729, 22.496916 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6135, "y": 3445 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.639007, 27.472990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6153, "y": 3540 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6153, "y": 3539 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406623, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6283, "y": 3636 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116670, 19.768511 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6284, "y": 3708 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164725, 16.785303 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6383, "y": 3780 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6383, "y": 3779 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514688, 13.751953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6410, "y": 4029 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.701941, 2.914025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6410, "y": 4023 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168615 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6430, "y": 3680 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599977, 17.966701 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6459, "y": 4066 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853867, 1.294989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6464, "y": 3362 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.068068, 30.671950 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6483, "y": 3831 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914681, 11.551985 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6504, "y": 3606 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848068, 21.035280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6526, "y": 4236 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827482, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6528, "y": 2850 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914665, 47.918621 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6694, "y": 3575 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.183054, 22.306934 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6711, "y": 3984 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933279, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6744, "y": 3103 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386338, 39.930842 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6839, "y": 3716 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569941, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6848, "y": 3759 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980265, 14.606114 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6859, "y": 3347 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434556, 31.218399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6862, "y": 3507 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568323, 25.035839 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6953, "y": 4291 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579449, -8.559379 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6957, "y": 3130 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752741, 39.021393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 6985, "y": 3172 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997780, 37.568299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7159, "y": 3925 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626540, 7.487399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7178, "y": 3251 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458196, 34.751989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7185, "y": 3243 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748047, 35.031947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7276, "y": 3225 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749452, 35.686965 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7394, "y": 5026 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973065, -37.818082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7445, "y": 4312 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192496, -9.464704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7489, "y": 4955 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.129019, -35.283025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7536, "y": 4917 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183226, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7694, "y": 3938 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149964, 6.916650 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7735, "y": 4311 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949758, -9.437992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7926, "y": 4506 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316630, -17.733349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 7995, "y": 3933 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379992, 7.103011 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 8033, "y": 4065 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017566, 1.338193 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 8072, "y": 4999 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.763030, -36.848067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 8073, "y": 5129 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783264, -41.299968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 8156, "y": 4515 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441701, -18.133015 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 8174, "y": 4290 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216645, -8.516642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 217, "y": 9176 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220566, -21.138512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 375, "y": 8828 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 376, "y": 8828 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738646, -13.841544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2588, "y": 5607 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123592, 49.275365 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2620, "y": 6333 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417173, 37.769197 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2813, "y": 6545 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181927, 33.991925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3413, "y": 6218 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3413, "y": 6217 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985963, 39.741135 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3625, "y": 6982 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.331933, 25.671942 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3680, "y": 7289 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132938, 19.444392 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3852, "y": 6769 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821922 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 3852, "y": 6768 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.341930, 29.821922 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4071, "y": 7519 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528916, 14.623083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4132, "y": 7561 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.204988, 13.711948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4152, "y": 7394 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.767074, 17.252035 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4198, "y": 6092 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.752003, 41.831940 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4222, "y": 7543 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.219477, 14.103993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4265, "y": 7634 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270442, 12.154964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4350, "y": 6554 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.401897, 33.831964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4365, "y": 7737 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.085997, 9.936958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4443, "y": 7109 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366133, 23.133908 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4540, "y": 6976 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.226057, 25.789560 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4572, "y": 7782 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.534986, 8.969963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4577, "y": 5976 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.421968, 43.701928 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4619, "y": 8201 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.501998, -0.213042 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4671, "y": 7012 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.350048, 25.083393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4685, "y": 8744 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052011, -12.046062 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4687, "y": 6267 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011365, 38.901495 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4698, "y": 7360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.767434, 17.977080 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4746, "y": 5866 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701964, 45.418644 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4820, "y": 7982 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085290, 4.598370 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4824, "y": 6157 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981966, 40.751926 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4825, "y": 6157 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981966, 40.751926 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4899, "y": 7332 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.337981, 18.542971 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4932, "y": 9787 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045818 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4932, "y": 9786 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622963, -33.045818 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 4975, "y": 9808 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.668987, -33.448067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5010, "y": 7336 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.902036, 18.472023 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5090, "y": 8953 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.151932, -16.496023 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5146, "y": 7711 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.918985, 10.502945 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5221, "y": 9075 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5221, "y": 9074 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.259519, -19.040968 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5337, "y": 7392 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.717010, 17.302035 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5377, "y": 7401 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850034, 17.118039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5382, "y": 7639 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.741646, 12.052636 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5392, "y": 7704 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517032, 10.651999 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5398, "y": 7487 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.387015, 15.301018 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5406, "y": 7588 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.212065, 13.148280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5415, "y": 7548 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -61.000010, 14.001977 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5478, "y": 7590 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.616532, 13.102003 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5534, "y": 9872 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.399479, -34.600552 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5544, "y": 7881 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Georgetown" }, "geometry": { "type": "Point", "coordinates": [ -58.167034, 6.801975 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5568, "y": 9382 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643456, -25.294454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5635, "y": 9886 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.172999, -34.856095 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5681, "y": 7926 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 5681, "y": 7925 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167031, 5.835032 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 6011, "y": 8919 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.918002, -15.781393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 6069, "y": 9295 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.626969, -23.556729 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 6224, "y": 9264 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226969, -22.923076 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7121, "y": 7505 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.516691, 14.916702 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7193, "y": 4353 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950018, 64.150026 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7396, "y": 7514 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.475080, 14.717781 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7436, "y": 7574 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591705, 13.453878 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7436, "y": 7573 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.591705, 13.453878 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7464, "y": 7354 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.975344, 18.086429 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7482, "y": 7648 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bissau" }, "geometry": { "type": "Point", "coordinates": [ -15.598365, 11.865025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7569, "y": 7756 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.682184, 9.533469 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7589, "y": 7805 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236165, 8.471958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7589, "y": 7804 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.236165, 8.471958 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7591, "y": 6907 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200009, 27.149985 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7700, "y": 7904 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799662, 6.314584 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7752, "y": 6959 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.652525, 26.119170 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7775, "y": 6277 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146816, 38.724672 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7827, "y": 7611 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.001990, 12.651964 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7845, "y": 6566 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618316, 33.601927 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7880, "y": 6543 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.836409, 34.025308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7907, "y": 5311 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.250856, 53.335009 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 7951, "y": 7880 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.275503, 6.818386 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8008, "y": 7949 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.041998, 5.321944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8024, "y": 6178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685302, 40.401973 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8122, "y": 7624 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.526670, 12.372265 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8182, "y": 7938 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.218664, 5.551982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8186, "y": 5448 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.118672, 51.501941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8247, "y": 7912 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220807, 6.133888 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8260, "y": 6051 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516483, 42.500002 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8261, "y": 6051 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516483, 42.500002 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8288, "y": 7570 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114707, 13.518657 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8298, "y": 5635 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.331387, 48.868642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8306, "y": 7900 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.518042, 6.401955 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8311, "y": 7896 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.616624, 6.483315 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8330, "y": 6390 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048604, 36.765013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8346, "y": 7898 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389583, 6.445209 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8386, "y": 5405 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.269959, 52.080040 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8389, "y": 5496 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331371, 50.835266 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8415, "y": 5385 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.914692, 52.351915 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8470, "y": 5583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130001, 49.611662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8471, "y": 5815 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.140027, 46.210008 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8471, "y": 5814 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.140027, 46.210008 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8471, "y": 5583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130001, 49.611662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8498, "y": 8176 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.733321, 0.333407 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8529, "y": 5974 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406909, 43.739647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8529, "y": 5973 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.406909, 43.739647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8531, "y": 5768 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.466975, 46.916683 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8534, "y": 7776 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531380, 9.085284 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8591, "y": 8021 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783274, 3.750020 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8622, "y": 8174 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.457963, 0.385393 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8625, "y": 5753 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.516665, 47.133724 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8655, "y": 6388 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.179675, 36.802782 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8681, "y": 4765 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.748030, 59.918637 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8716, "y": 8015 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514702, 3.868649 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8758, "y": 6087 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453384, 41.903283 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8758, "y": 5961 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.441770, 43.936098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8760, "y": 6088 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481311, 41.897905 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8763, "y": 5127 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.561536, 55.680512 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8791, "y": 6605 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.180010, 32.892502 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8794, "y": 8595 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.232480, -8.836340 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8801, "y": 5372 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.399597, 52.523768 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8850, "y": 5550 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464032, 50.085286 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8852, "y": 6439 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.514710, 35.899736 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8852, "y": 5825 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.514967, 46.055290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8876, "y": 7636 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047198, 12.115047 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8887, "y": 8385 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282739, -4.257238 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8888, "y": 8389 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313021, -4.327775 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8920, "y": 5841 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.999994, 45.800010 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8936, "y": 5681 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364688, 48.201963 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8969, "y": 9246 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083542, -22.570005 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8970, "y": 5685 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116978, 48.150022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8971, "y": 5685 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116978, 48.150022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9015, "y": 4816 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.095384, 59.352706 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9028, "y": 5967 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.382997, 43.850022 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9030, "y": 9834 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.433042, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9036, "y": 7993 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.558285, 4.366646 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9060, "y": 5729 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.081374, 47.501953 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9068, "y": 6053 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.266302, 42.465975 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9093, "y": 6123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818880, 41.327544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9093, "y": 6122 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.818880, 41.327544 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9123, "y": 5905 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.466043, 44.820591 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9147, "y": 5393 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998049, 52.251947 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9155, "y": 6040 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165982, 42.666711 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9167, "y": 6082 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433457, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9167, "y": 6081 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.433457, 42.000006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9253, "y": 6039 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.314705, 42.685298 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9272, "y": 6320 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731370, 37.985276 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9288, "y": 5023 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.099964, 56.950024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9317, "y": 4809 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.728036, 59.433879 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9317, "y": 4808 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.728036, 59.433879 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9326, "y": 4741 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.932179, 60.177510 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9344, "y": 5207 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.316631, 54.683368 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9371, "y": 9349 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911947, -24.646310 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9379, "y": 5929 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.097996, 44.435320 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9385, "y": 9578 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229912, -29.119990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9442, "y": 9588 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.483271, -29.316671 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9446, "y": 5268 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564681, 53.901924 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9467, "y": 9426 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.028060, -26.168096 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9476, "y": 9403 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.227482, -25.704974 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9479, "y": 8902 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.281378, -15.414696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9505, "y": 5762 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.857710, 47.005024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9512, "y": 6136 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.008053, 41.106944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9528, "y": 8345 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360002, -3.376083 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9559, "y": 8280 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058583, -1.951643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9560, "y": 8280 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058583, -1.951643 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9580, "y": 5525 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514682, 50.435313 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9604, "y": 9016 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.042761, -17.815843 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9608, "y": 9434 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.133333, -26.316647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9611, "y": 9441 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.199997, -26.466664 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9614, "y": 6756 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248019, 30.051911 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9629, "y": 7971 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580023, 4.829976 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9672, "y": 7473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532229, 15.590027 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9674, "y": 8177 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.581378, 0.318607 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9675, "y": 9415 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.587214, -25.953327 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9687, "y": 6206 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.862441, 39.929188 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9710, "y": 6480 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.366632, 35.166678 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9729, "y": 8834 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.783297, -13.983290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9774, "y": 6649 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.768065, 32.081938 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9794, "y": 6665 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.206622, 31.778412 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9807, "y": 6551 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507759, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9808, "y": 6551 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507759, 33.873925 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9819, "y": 8473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.750000, -6.183302 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9827, "y": 6656 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931349, 31.951976 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9827, "y": 6655 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.931349, 31.951976 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9843, "y": 6572 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298045, 33.501981 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9867, "y": 8250 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.814708, -1.281399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9903, "y": 5121 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613572, 55.754111 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9953, "y": 7779 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.698053, 9.035260 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9963, "y": 7485 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.933321, 15.333344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9979, "y": 8502 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.266392, -6.798065 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10155, "y": 7660 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.147999, 11.595016 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10159, "y": 8728 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.240240, -11.704155 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10197, "y": 7754 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.065309, 9.560025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10203, "y": 7484 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204645, 15.356680 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10212, "y": 6580 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.391922, 33.340599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10217, "y": 6191 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511602, 40.183099 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10230, "y": 6098 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788846, 41.726959 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10256, "y": 8097 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364727, 2.068628 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10320, "y": 7034 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770794, 24.642780 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10354, "y": 9068 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.514673, -18.914690 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10375, "y": 6792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976351, 29.371667 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10461, "y": 6178 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.860270, 40.397222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10494, "y": 6953 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.583050, 26.236140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10532, "y": 6452 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.422394, 35.673892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10537, "y": 7001 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.532965, 25.286557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10666, "y": 7043 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.366590, 24.466687 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10707, "y": 7004 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.278026, 25.231944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10715, "y": 8402 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.449988, -4.616630 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10808, "y": 9129 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499990, -20.166637 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10849, "y": 6322 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.383295, 37.949997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 10858, "y": 7085 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.593312, 23.613326 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11321, "y": 6287 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.773878, 38.560038 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11340, "y": 6516 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.181311, 34.518637 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11345, "y": 6123 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.292982, 41.313648 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11442, "y": 5471 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427773, 51.181129 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11507, "y": 7310 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855041, 19.018939 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11521, "y": 6561 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.164686, 33.701944 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11537, "y": 8002 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.499946, 4.166712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11586, "y": 6028 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.583258, 42.875028 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11705, "y": 6832 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.199978, 28.600023 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11721, "y": 7596 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.558064, 12.971945 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11826, "y": 7875 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857747, 6.931970 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 11830, "y": 7877 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.949988, 6.900007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12074, "y": 6878 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314696, 27.718642 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12177, "y": 5969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573057, 43.806961 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12211, "y": 7140 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.322729, 22.496916 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12271, "y": 6890 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.639012, 27.472990 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12306, "y": 7080 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406628, 23.725007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12306, "y": 7079 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406628, 23.725007 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12566, "y": 7273 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116670, 19.768506 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12568, "y": 7416 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164730, 16.785303 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12766, "y": 7560 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514694, 13.751948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12820, "y": 8059 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.701947, 2.914020 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12820, "y": 8047 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.698036, 3.168615 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12861, "y": 7360 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.599977, 17.966696 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12918, "y": 8133 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853872, 1.294984 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12928, "y": 6724 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.068074, 30.671946 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 12966, "y": 7662 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914686, 11.551980 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13009, "y": 7212 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848068, 21.035275 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13053, "y": 8473 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.827487, -6.172470 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13057, "y": 5700 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.914670, 47.918621 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13388, "y": 7150 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.183059, 22.306929 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13422, "y": 7969 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933284, 4.883336 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13488, "y": 6206 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.386338, 39.930842 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13679, "y": 7433 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569941, 16.429993 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13697, "y": 7519 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.980271, 14.606109 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13718, "y": 6695 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.434556, 31.218399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13724, "y": 7014 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.568329, 25.035834 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13907, "y": 8583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579454, -8.559384 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13907, "y": 8582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579454, -8.559384 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13915, "y": 6260 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752741, 39.021388 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 13971, "y": 6344 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.997785, 37.568299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14318, "y": 7850 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626545, 7.487399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14319, "y": 7850 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626545, 7.487399 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14356, "y": 6503 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458196, 34.751984 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14370, "y": 6487 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.748052, 35.031942 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14552, "y": 6451 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.749457, 35.686965 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14789, "y": 10053 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.973070, -37.818082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14890, "y": 8624 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192501, -9.464704 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 14979, "y": 9910 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.129024, -35.283025 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 15072, "y": 9834 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.183231, -33.918061 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 15389, "y": 7876 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.149969, 6.916644 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 15471, "y": 8623 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949763, -9.437992 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 15852, "y": 9012 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316635, -17.733349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 15991, "y": 7867 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.379997, 7.103006 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 16066, "y": 8131 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.017566, 1.338188 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 16145, "y": 9998 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.763030, -36.848067 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 16146, "y": 10259 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.783270, -41.299972 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 16313, "y": 9031 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.441706, -18.133015 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 16348, "y": 8581 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.216645, -8.516647 ] } } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5.json index f32d431..926d230 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } @@ -21,13 +21,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.296472 ] } } , { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.284180, 53.357109 ] } } @@ -35,7 +35,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.916992, -9.405710 ] } } @@ -43,7 +43,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.714732 ] } } @@ -55,25 +55,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.231934, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.197754 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.549316, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } @@ -85,7 +85,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.771973, -13.966054 ] } } @@ -93,7 +93,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.546387, 55.689972 ] } } @@ -111,13 +111,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.296276 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.309426 ] } } @@ -125,13 +125,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } @@ -139,13 +139,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } @@ -153,7 +153,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.354736, 25.085599 ] } } @@ -167,19 +167,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.917923 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.923554 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.656982, 26.125850 ] } } @@ -191,13 +191,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.153742 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.340574 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.563293 ] } } @@ -209,7 +209,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.561315 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.906849 ] } } @@ -227,7 +227,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.119385, 49.617828 ] } } @@ -245,13 +245,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.609278 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.187267 ] } } , { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.372602 ] } } @@ -265,19 +265,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.820068, -6.162401 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.479035 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.968283 ] } } @@ -289,19 +289,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.907959, 47.923705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.294317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.183838, -9.459899 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } @@ -309,7 +309,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } @@ -317,31 +317,31 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.278557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.990845, 39.745210 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.344849, 29.826348 ] } } @@ -349,13 +349,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -363,7 +363,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } , { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.715372 ] } } @@ -377,7 +377,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -387,7 +387,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } @@ -395,7 +395,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } , { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.631470, -23.553917 ] } } @@ -403,13 +403,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.264282, -19.036156 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } @@ -423,19 +423,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } , { "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.594849, 13.459080 ] } } @@ -449,7 +449,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.605470 ] } } @@ -459,25 +459,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.151347 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.078247, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.729126, 0.335081 ] } } , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.253290 ] } } @@ -487,7 +487,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.555848 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -503,7 +503,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } @@ -511,7 +511,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.352119 ] } } @@ -539,7 +539,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.557373, 55.680682 ] } } @@ -547,7 +547,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.642024 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.118574 ] } } @@ -559,7 +559,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.370856 ] } } @@ -573,7 +573,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } @@ -585,7 +585,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.930801 ] } } @@ -599,7 +599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.436516 ] } } @@ -611,7 +611,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.098511, 56.950966 ] } } @@ -619,7 +619,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } , { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.496948, -20.164255 ] } } @@ -627,13 +627,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.400948 ] } } , { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.971802, 29.372602 ] } } @@ -647,13 +647,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.785767, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } @@ -663,7 +663,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.768921, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.706063 ] } } @@ -675,7 +675,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -683,13 +683,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.167862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.113892, 19.771873 ] } } , { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } @@ -701,7 +701,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.675715 ] } } @@ -709,19 +709,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.975952, 14.610163 ] } } @@ -731,7 +731,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.935013 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.222197 ] } } @@ -741,7 +741,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.970093, -37.814124 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -749,19 +749,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.189331, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.755153 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.688533 ] } } @@ -769,19 +769,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.944458, -9.432806 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } @@ -789,7 +789,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.920974 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } @@ -797,7 +797,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.741028, -13.840747 ] } } @@ -805,7 +805,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.993473 ] } } @@ -813,19 +813,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.276765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.988098, 39.743098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.530090, 14.623451 ] } } @@ -833,7 +833,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.673711 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.823966 ] } } @@ -841,7 +841,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.939093 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.971897 ] } } @@ -849,7 +849,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.253613 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -861,7 +861,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.135309 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -869,13 +869,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422913, 43.703622 ] } } @@ -883,7 +883,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.447485 ] } } @@ -891,7 +891,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -899,13 +899,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.601065 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } @@ -913,7 +913,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.769714, 17.978733 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.339478, 18.544721 ] } } @@ -923,13 +923,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.351990, 25.085599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } , { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.984680, 40.753499 ] } } @@ -937,13 +937,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.704041, 45.419660 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.599302 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } @@ -951,19 +951,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.261536, -19.038752 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.920471, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.652510 ] } } @@ -973,7 +973,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.119793 ] } } @@ -991,43 +991,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.628723, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.919617, -15.779039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.837349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.228455, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.518982, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.535749 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } @@ -1035,7 +1035,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.476501, 14.719104 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.976868, 18.088423 ] } } @@ -1047,19 +1047,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.802307, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.820080 ] } } @@ -1071,7 +1071,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.003540, 12.653738 ] } } , { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.374880 ] } } @@ -1079,13 +1079,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.654236, 26.120918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.148865, 38.726233 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.603182 ] } } @@ -1097,7 +1097,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } @@ -1105,7 +1105,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.553114 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -1127,13 +1127,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.112122, 13.520508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.045959, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -1141,7 +1141,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.870135 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } @@ -1157,7 +1157,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.081194 ] } } @@ -1173,25 +1173,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.080994, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } , { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.312195, -4.327240 ] } } @@ -1201,7 +1201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } @@ -1209,13 +1209,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.045776, 12.117208 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.900175 ] } } @@ -1223,7 +1223,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.056079 ] } } @@ -1255,7 +1255,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.397827, 52.524577 ] } } @@ -1267,7 +1267,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } @@ -1275,7 +1275,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.644521 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.167764 ] } } @@ -1295,7 +1295,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.413967 ] } } , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.814071 ] } } @@ -1305,7 +1305,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.055847, -1.949697 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.358215, -3.373598 ] } } @@ -1313,7 +1313,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.577454, 4.830997 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.321348 ] } } @@ -1321,19 +1321,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.006653, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.985340 ] } } @@ -1345,7 +1345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.686473 ] } } , { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.095276, 44.435741 ] } } @@ -1357,7 +1357,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.315247, 54.684947 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.561951, 53.902720 ] } } @@ -1367,7 +1367,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.930725, 60.178404 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727478, 59.433903 ] } } @@ -1377,7 +1377,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.239441, -11.703341 ] } } @@ -1385,7 +1385,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.812439, -1.279801 ] } } , { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.181516 ] } } @@ -1395,7 +1395,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.696594, 9.037003 ] } } , { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.063416, 9.560126 ] } } @@ -1403,7 +1403,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.358356 ] } } @@ -1413,7 +1413,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } @@ -1423,7 +1423,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.505066, 33.874976 ] } } @@ -1441,43 +1441,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.513123, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.974548, 29.372602 ] } } , { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.644521 ] } } @@ -1493,7 +1493,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.858704, 40.398856 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -1501,37 +1501,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.164255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.168376 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.853088, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -1539,13 +1539,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.198181, 28.601403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.771667, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -1555,7 +1555,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -1563,13 +1563,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.934606 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.901887 ] } } @@ -1577,7 +1577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.720005 ] } } , { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } @@ -1587,13 +1587,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.808765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.786135 ] } } @@ -1603,19 +1603,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.170593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.170683 ] } } , { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.915611 ] } } @@ -1625,7 +1625,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.598572, 17.968283 ] } } , { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035801 ] } } @@ -1635,25 +1635,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.673353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.930725, 4.885731 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.978699, 14.607505 ] } } @@ -1661,7 +1661,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.219848 ] } } @@ -1671,25 +1671,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.932907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.023451 ] } } , { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.568528 ] } } @@ -1697,13 +1697,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.816293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.752896 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.032245 ] } } @@ -1713,7 +1713,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -1721,55 +1721,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.462608 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.947205, -9.435515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.918247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.846659 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.378479, 7.103618 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.015442, 1.340210 ] } } diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json index 30f0c93..82f000e 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } , { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } @@ -47,7 +47,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.708008, -33.431441 ] } } @@ -57,7 +57,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.296472 ] } } , { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } @@ -85,7 +85,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.318243 ] } } @@ -105,7 +105,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.877930, 52.375599 ] } } @@ -155,13 +155,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.231934, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.282140 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } @@ -175,7 +175,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.197754 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } @@ -189,7 +189,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.549316, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } @@ -239,7 +239,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.563477, 0.329588 ] } } @@ -267,7 +267,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.572250 ] } } @@ -359,7 +359,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.296276 ] } } , { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.809082, -6.162401 ] } } @@ -375,7 +375,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.896973, 47.931066 ] } } @@ -405,7 +405,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.749268, -13.838080 ] } } @@ -413,7 +413,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } @@ -433,13 +433,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.058105, -12.039321 ] } } @@ -465,7 +465,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.407959, 33.833920 ] } } @@ -527,7 +527,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } @@ -539,13 +539,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.917923 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.923554 ] } } , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } @@ -587,7 +587,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.153742 ] } } , { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } @@ -599,7 +599,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.340574 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } @@ -653,7 +653,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.561315 ] } } , { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.808350, 41.335576 ] } } @@ -735,7 +735,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } @@ -825,7 +825,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.609278 ] } } , { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.906286 ] } } @@ -835,7 +835,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.187267 ] } } , { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.348885 ] } } @@ -895,7 +895,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.730330 ] } } , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.422119, 51.186230 ] } } @@ -911,7 +911,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.820068, -6.162401 ] } } , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } @@ -919,7 +919,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.479035 ] } } , { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } @@ -971,19 +971,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.907959, 47.923705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.294317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.183838, -9.459899 ] } } , { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.964600, -37.814124 ] } } @@ -1007,7 +1007,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.450439, 34.759666 ] } } @@ -1025,7 +1025,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.743774, -13.838080 ] } } @@ -1033,7 +1033,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.185425, 33.993473 ] } } @@ -1041,13 +1041,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.278557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.532837, 14.626109 ] } } @@ -1055,7 +1055,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.990845, 39.745210 ] } } , { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.676187 ] } } @@ -1065,7 +1065,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.445193 ] } } @@ -1073,7 +1073,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } @@ -1083,7 +1083,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -1109,7 +1109,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.369995, 23.135309 ] } } @@ -1125,7 +1125,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.425659, 43.703622 ] } } @@ -1137,7 +1137,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } , { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } @@ -1149,7 +1149,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.264282, -19.036156 ] } } , { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.776395 ] } } @@ -1157,7 +1157,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } @@ -1183,19 +1183,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.979614, 18.088423 ] } } @@ -1223,7 +1223,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } @@ -1239,7 +1239,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } @@ -1247,13 +1247,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.151347 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.078247, -22.568366 ] } } , { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.429565, -33.916013 ] } } @@ -1261,7 +1261,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.729126, 0.335081 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.453735, 0.390012 ] } } @@ -1275,7 +1275,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.555848 ] } } , { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.523179 ] } } @@ -1305,7 +1305,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -1317,7 +1317,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.082882 ] } } @@ -1379,7 +1379,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } @@ -1389,7 +1389,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.642024 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.165299 ] } } @@ -1409,7 +1409,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } , { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.053101, -1.949697 ] } } @@ -1433,7 +1433,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } , { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.833733 ] } } @@ -1455,7 +1455,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } @@ -1483,7 +1483,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.559204, 53.904338 ] } } @@ -1505,7 +1505,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.724731, 59.433903 ] } } @@ -1517,7 +1517,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } , { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.510376, -18.911483 ] } } @@ -1527,13 +1527,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.400948 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -1557,13 +1557,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.785767, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -1577,7 +1577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.768921, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -1597,7 +1597,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } @@ -1609,13 +1609,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.167862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.113892, 19.771873 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.788765 ] } } @@ -1637,7 +1637,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } @@ -1647,19 +1647,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } @@ -1673,7 +1673,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.935013 ] } } , { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } @@ -1689,7 +1689,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.970093, -37.814124 ] } } , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } @@ -1699,19 +1699,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.189331, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.755153 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.034494 ] } } @@ -1721,13 +1721,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } @@ -1735,7 +1735,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.944458, -9.432806 ] } } , { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } @@ -1747,7 +1747,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.920974 ] } } , { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.375732, 7.106344 ] } } @@ -1757,7 +1757,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.741028, -13.840747 ] } } @@ -1765,7 +1765,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.993473 ] } } @@ -1773,19 +1773,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.276765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.988098, 39.743098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.530090, 14.623451 ] } } @@ -1793,7 +1793,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.673711 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.823966 ] } } @@ -1801,7 +1801,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.939093 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.971897 ] } } @@ -1809,7 +1809,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.253613 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -1821,7 +1821,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.135309 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -1829,13 +1829,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422913, 43.703622 ] } } @@ -1843,7 +1843,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.447485 ] } } @@ -1851,7 +1851,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -1859,13 +1859,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.601065 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } @@ -1873,7 +1873,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.769714, 17.978733 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.339478, 18.544721 ] } } @@ -1883,13 +1883,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.351990, 25.085599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } , { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.984680, 40.753499 ] } } @@ -1897,13 +1897,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.704041, 45.419660 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.599302 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } @@ -1911,19 +1911,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.261536, -19.038752 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.920471, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.652510 ] } } @@ -1933,7 +1933,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.119793 ] } } @@ -1951,43 +1951,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.628723, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.919617, -15.779039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.837349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.228455, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.518982, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.535749 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } @@ -1995,7 +1995,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.476501, 14.719104 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.976868, 18.088423 ] } } @@ -2007,19 +2007,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.802307, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.820080 ] } } @@ -2031,7 +2031,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.003540, 12.653738 ] } } , { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.374880 ] } } @@ -2039,13 +2039,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.654236, 26.120918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.148865, 38.726233 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.603182 ] } } @@ -2057,7 +2057,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } @@ -2065,7 +2065,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.553114 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -2087,13 +2087,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.112122, 13.520508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.045959, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -2101,7 +2101,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.870135 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } @@ -2117,7 +2117,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.081194 ] } } @@ -2133,25 +2133,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.080994, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } , { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.312195, -4.327240 ] } } @@ -2161,7 +2161,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } @@ -2169,13 +2169,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.045776, 12.117208 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.900175 ] } } @@ -2183,7 +2183,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.056079 ] } } @@ -2215,7 +2215,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.397827, 52.524577 ] } } @@ -2227,7 +2227,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } @@ -2235,7 +2235,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.644521 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.167764 ] } } @@ -2255,7 +2255,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.413967 ] } } , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.814071 ] } } @@ -2265,7 +2265,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.055847, -1.949697 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.358215, -3.373598 ] } } @@ -2273,7 +2273,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.577454, 4.830997 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.321348 ] } } @@ -2281,19 +2281,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.006653, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.985340 ] } } @@ -2305,7 +2305,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.686473 ] } } , { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.095276, 44.435741 ] } } @@ -2317,7 +2317,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.315247, 54.684947 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.561951, 53.902720 ] } } @@ -2327,7 +2327,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.930725, 60.178404 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727478, 59.433903 ] } } @@ -2337,7 +2337,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.239441, -11.703341 ] } } @@ -2345,7 +2345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.812439, -1.279801 ] } } , { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.181516 ] } } @@ -2355,7 +2355,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.696594, 9.037003 ] } } , { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.063416, 9.560126 ] } } @@ -2363,7 +2363,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.358356 ] } } @@ -2373,7 +2373,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } @@ -2383,7 +2383,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.505066, 33.874976 ] } } @@ -2401,43 +2401,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.513123, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.974548, 29.372602 ] } } , { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.644521 ] } } @@ -2453,7 +2453,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.858704, 40.398856 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -2461,37 +2461,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.164255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.168376 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.853088, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -2499,13 +2499,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.198181, 28.601403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.771667, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -2515,7 +2515,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -2523,13 +2523,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.934606 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.901887 ] } } @@ -2537,7 +2537,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.720005 ] } } , { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } @@ -2547,13 +2547,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.808765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.786135 ] } } @@ -2563,19 +2563,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.170593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.170683 ] } } , { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.915611 ] } } @@ -2585,7 +2585,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.598572, 17.968283 ] } } , { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035801 ] } } @@ -2595,25 +2595,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.673353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.930725, 4.885731 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.978699, 14.607505 ] } } @@ -2621,7 +2621,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.219848 ] } } @@ -2631,25 +2631,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.932907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.023451 ] } } , { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.568528 ] } } @@ -2657,13 +2657,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.816293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.752896 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.032245 ] } } @@ -2673,7 +2673,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -2681,55 +2681,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.462608 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.947205, -9.435515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.918247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.846659 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.378479, 7.103618 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.015442, 1.340210 ] } } diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json index e0caa52..06a2146 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.325122 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.615234, 14.689881 ] } } @@ -79,7 +79,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.253906, -21.125498 ] } } , { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.027088 ] } } @@ -89,7 +89,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.296472 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } @@ -121,7 +121,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.943041 ] } } @@ -143,7 +143,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.106505 ] } } @@ -203,13 +203,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.231934, -21.125498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.282140 ] } } , { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -105.007324, 39.757880 ] } } @@ -219,7 +219,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.197754 ] } } , { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } @@ -231,7 +231,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.549316, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.717773, 45.429299 ] } } @@ -269,7 +269,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.270996, -4.236856 ] } } @@ -291,7 +291,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } @@ -361,7 +361,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.296276 ] } } , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } @@ -375,7 +375,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.395508, 23.725012 ] } } @@ -397,13 +397,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.996338, 39.749434 ] } } @@ -415,13 +415,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.282140 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } @@ -435,7 +435,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.538330, 14.626109 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } @@ -465,7 +465,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } @@ -473,13 +473,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.917923 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.923554 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } @@ -501,7 +501,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.153742 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } @@ -509,7 +509,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.340574 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.574463, 0.329588 ] } } @@ -537,7 +537,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.561315 ] } } , { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } @@ -577,7 +577,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.508742 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.355596 ] } } @@ -621,7 +621,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.609278 ] } } , { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.491455, -20.159098 ] } } @@ -629,7 +629,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.187267 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } @@ -659,7 +659,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.730330 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } @@ -669,13 +669,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.820068, -6.162401 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.479035 ] } } , { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } @@ -701,19 +701,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.907959, 47.923705 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.294317 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.183838, -9.459899 ] } } , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } @@ -727,7 +727,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.038992 ] } } @@ -739,7 +739,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.743774, -13.838080 ] } } @@ -747,7 +747,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.185425, 33.993473 ] } } @@ -755,13 +755,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.278557 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.532837, 14.626109 ] } } @@ -769,7 +769,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.990845, 39.745210 ] } } , { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.676187 ] } } @@ -779,7 +779,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.445193 ] } } @@ -787,7 +787,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.208740 ] } } , { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } @@ -797,7 +797,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -817,7 +817,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.369995, 23.135309 ] } } @@ -831,7 +831,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.425659, 43.703622 ] } } @@ -841,7 +841,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } , { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } @@ -851,7 +851,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.264282, -19.036156 ] } } , { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.776395 ] } } @@ -859,7 +859,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } @@ -879,19 +879,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.979614, 18.088423 ] } } @@ -913,7 +913,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } @@ -927,7 +927,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } @@ -935,13 +935,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.151347 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.078247, -22.568366 ] } } , { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.429565, -33.916013 ] } } @@ -949,7 +949,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.729126, 0.335081 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.453735, 0.390012 ] } } @@ -961,7 +961,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.555848 ] } } , { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.523179 ] } } @@ -983,7 +983,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -993,7 +993,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.505323 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.082882 ] } } @@ -1037,7 +1037,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } @@ -1047,7 +1047,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.642024 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.165299 ] } } @@ -1063,7 +1063,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.324095 ] } } , { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.053101, -1.949697 ] } } @@ -1081,7 +1081,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } , { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.833733 ] } } @@ -1099,7 +1099,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } @@ -1121,7 +1121,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.559204, 53.904338 ] } } @@ -1139,7 +1139,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.724731, 59.433903 ] } } @@ -1149,7 +1149,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } , { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.510376, -18.911483 ] } } @@ -1159,13 +1159,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.400948 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -1183,13 +1183,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.785767, 41.730330 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -1201,7 +1201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.768921, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -1217,7 +1217,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } @@ -1227,13 +1227,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.167862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.113892, 19.771873 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.788765 ] } } @@ -1251,7 +1251,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } @@ -1261,19 +1261,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } @@ -1285,7 +1285,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.935013 ] } } , { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } @@ -1299,7 +1299,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.970093, -37.814124 ] } } , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } @@ -1309,19 +1309,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.189331, -9.459899 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.755153 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.034494 ] } } @@ -1331,13 +1331,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } @@ -1345,7 +1345,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.944458, -9.432806 ] } } , { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } @@ -1355,7 +1355,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.920974 ] } } , { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.375732, 7.106344 ] } } @@ -1365,7 +1365,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.138307 ] } } , { "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.741028, -13.840747 ] } } @@ -1373,7 +1373,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.770715 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.182678, 33.993473 ] } } @@ -1381,19 +1381,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.276765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.988098, 39.743098 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.135132, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.530090, 14.623451 ] } } @@ -1401,7 +1401,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.673711 ] } } , { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.342102, 29.823966 ] } } @@ -1409,7 +1409,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.086609, 9.939093 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.971897 ] } } @@ -1417,7 +1417,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.253613 ] } } , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } @@ -1429,7 +1429,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.367249, 23.135309 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.227661, 25.790000 ] } } @@ -1437,13 +1437,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.833920 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , { "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.422913, 43.703622 ] } } @@ -1451,7 +1451,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.625366, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.669556, -33.447485 ] } } @@ -1459,7 +1459,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.044693 ] } } , { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.153687, -16.494032 ] } } @@ -1467,13 +1467,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.601065 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.211486 ] } } @@ -1481,7 +1481,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.769714, 17.978733 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.339478, 18.544721 ] } } @@ -1491,13 +1491,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.351990, 25.085599 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011414, 38.901721 ] } } , { "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.984680, 40.753499 ] } } @@ -1505,13 +1505,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.704041, 45.419660 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.400574, -34.599302 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } @@ -1519,19 +1519,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.261536, -19.038752 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.920471, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.652510 ] } } @@ -1541,7 +1541,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.718201, 17.303443 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.850281, 17.119793 ] } } @@ -1559,43 +1559,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.854383 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.628723, -23.556434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.919617, -15.779039 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.837349 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.228455, -22.922982 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.518982, 14.918246 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.535749 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } @@ -1603,7 +1603,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.476501, 14.719104 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.976868, 18.088423 ] } } @@ -1615,19 +1615,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.152033 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.150149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.802307, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.276184, 6.820080 ] } } @@ -1639,7 +1639,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -8.003540, 12.653738 ] } } , { "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.374880 ] } } @@ -1647,13 +1647,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.654236, 26.120918 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.148865, 38.726233 ] } } , { "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.603182 ] } } @@ -1665,7 +1665,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.335793 ] } } , { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } @@ -1673,7 +1673,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.553114 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } @@ -1695,13 +1695,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.112122, 13.520508 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.045959, 36.765292 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.804887 ] } } @@ -1709,7 +1709,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.870135 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } @@ -1725,7 +1725,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.503614 ] } } , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.268188, 52.081194 ] } } @@ -1741,25 +1741,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.747375, 59.919237 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.432312, -33.916013 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.080994, -22.568366 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.256029 ] } } , { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.312195, -4.327240 ] } } @@ -1769,7 +1769,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } @@ -1777,13 +1777,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.045776, 12.117208 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.178101, 32.893426 ] } } , { "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.900175 ] } } @@ -1791,7 +1791,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.056079 ] } } @@ -1823,7 +1823,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.397827, 52.524577 ] } } @@ -1835,7 +1835,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.560120, 55.680682 ] } } @@ -1843,7 +1843,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.644521 ] } } , { "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.167764 ] } } @@ -1863,7 +1863,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.413967 ] } } , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.814071 ] } } @@ -1873,7 +1873,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.055847, -1.949697 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.358215, -3.373598 ] } } @@ -1881,7 +1881,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.577454, 4.830997 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.579956, 0.321348 ] } } @@ -1889,19 +1889,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.247864, 30.052454 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.006653, 41.108330 ] } } , { "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.985340 ] } } @@ -1913,7 +1913,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.686473 ] } } , { "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.095276, 44.435741 ] } } @@ -1925,7 +1925,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.315247, 54.684947 ] } } , { "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.561951, 53.902720 ] } } @@ -1935,7 +1935,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.930725, 60.178404 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.727478, 59.433903 ] } } @@ -1945,7 +1945,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.239441, -11.703341 ] } } @@ -1953,7 +1953,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.812439, -1.279801 ] } } , { "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.181516 ] } } @@ -1963,7 +1963,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.696594, 9.037003 ] } } , { "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.063416, 9.560126 ] } } @@ -1971,7 +1971,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.932800, 15.334518 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.358356 ] } } @@ -1981,7 +1981,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } @@ -1991,7 +1991,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.766235, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.505066, 33.874976 ] } } @@ -2009,43 +2009,43 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.611694, 55.754941 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.513123, -18.914082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.614753 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.070472 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.974548, 29.372602 ] } } , { "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.644521 ] } } @@ -2061,7 +2061,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.858704, 40.398856 ] } } , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.675147 ] } } @@ -2069,37 +2069,37 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788513, 41.728280 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.499695, -20.164255 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.592834, 23.614329 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.950695 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.168376 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.853088, 19.020577 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } @@ -2107,13 +2107,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.198181, 28.601403 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.771667, 38.561053 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.520136 ] } } @@ -2123,7 +2123,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.314950 ] } } , { "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.580688, 42.875964 ] } } @@ -2131,13 +2131,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.182786 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.856873, 6.934606 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.901887 ] } } @@ -2145,7 +2145,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.720005 ] } } , { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } @@ -2155,13 +2155,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.808765 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.116638, 19.769288 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.786135 ] } } @@ -2171,19 +2171,19 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.825562, -6.170593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.697693, 3.170683 ] } } , { "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.915611 ] } } @@ -2193,7 +2193,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.598572, 17.968283 ] } } , { "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.035801 ] } } @@ -2203,25 +2203,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.673353 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.913452, 47.920024 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.930725, 4.885731 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.978699, 14.607505 ] } } @@ -2229,7 +2229,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.219848 ] } } @@ -2239,25 +2239,25 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.383667, 39.932907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.579224, -8.559294 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.752258, 39.023451 ] } } , { "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.568528 ] } } @@ -2265,13 +2265,13 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.972839, -37.816293 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.455933, 34.752896 ] } } , { "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.032245 ] } } @@ -2281,7 +2281,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } @@ -2289,55 +2289,55 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.192078, -9.462608 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.947205, -9.435515 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.918247 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.298444 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.762268, -36.846659 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.132801 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 16 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.214478, -8.515836 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 15 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.378479, 7.103618 ] } } , { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.015442, 1.340210 ] } } diff --git a/tests/nullisland/out/-b0_-z4.json b/tests/nullisland/out/-b0_-z4.json index 3f41b84..0a99b7f 100644 --- a/tests/nullisland/out/-b0_-z4.json +++ b/tests/nullisland/out/-b0_-z4.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.054688, 0.000000 ] } } @@ -33,7 +33,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -45,7 +45,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -57,7 +57,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] } } @@ -69,7 +69,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -81,7 +81,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -93,7 +93,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -105,7 +105,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ] ] } } @@ -117,7 +117,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -129,7 +129,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -143,7 +143,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -157,7 +157,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } @@ -171,7 +171,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -185,7 +185,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ] ] } } @@ -201,7 +201,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } @@ -217,7 +217,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } @@ -233,7 +233,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.005197 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ] ] } } diff --git a/tests/nullisland/out/-b0_-z4_-ANullIsland.json b/tests/nullisland/out/-b0_-z4_-ANullIsland.json index 33ffb0e..58862da 100644 --- a/tests/nullisland/out/-b0_-z4_-ANullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-ANullIsland.json @@ -12,7 +12,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.054688, 0.000000 ] } } @@ -34,7 +34,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -46,7 +46,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -58,7 +58,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] } } @@ -70,7 +70,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -82,7 +82,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -94,7 +94,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -106,7 +106,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ] ] } } @@ -118,7 +118,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -130,7 +130,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } @@ -144,7 +144,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } @@ -158,7 +158,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } @@ -172,7 +172,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.010690 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } @@ -186,7 +186,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ] ] } } @@ -202,7 +202,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } @@ -218,7 +218,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } @@ -234,7 +234,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 1.005197 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ] ] } } diff --git a/tests/overlap/out/-z0.json b/tests/overlap/out/-z0.json index 7e26c86..24a56dc 100644 --- a/tests/overlap/out/-z0.json +++ b/tests/overlap/out/-z0.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.076172, 61.015725 ], [ -37.001953, 34.016242 ], [ -71.015625, 29.075375 ], [ -103.007812, 39.027719 ], [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.037109, 59.040555 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -81.035156, 63.035039 ], [ -28.037109, 59.040555 ] ] ] } } diff --git a/tests/overlap/out/-z0_--coalesce.json b/tests/overlap/out/-z0_--coalesce.json index 9d0a2f5..04aa984 100644 --- a/tests/overlap/out/-z0_--coalesce.json +++ b/tests/overlap/out/-z0_--coalesce.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.007812, 39.027719 ], [ -71.015625, 29.075375 ], [ -37.001953, 34.016242 ], [ -15.380859, 52.908902 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -111.884766, 53.383328 ], [ -103.007812, 39.027719 ] ] ], [ [ [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ], [ -15.380859, 52.908902 ], [ -28.037109, 59.040555 ], [ -81.035156, 63.035039 ], [ -111.884766, 53.383328 ], [ -117.070312, 60.020952 ] ] ] ] } } ] } ] } diff --git a/tests/pbf/11-328-791.json b/tests/pbf/11-328-791.json index b7ceed2..d3033b4 100644 --- a/tests/pbf/11-328-791.json +++ b/tests/pbf/11-328-791.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "macarthur" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 1, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "LINEARID": "1104485645649", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279677, 37.828599 ], [ -122.280321, 37.828531 ], [ -122.282510, 37.828023 ], [ -122.283368, 37.827921 ], [ -122.284484, 37.827684 ], [ -122.284656, 37.827819 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485605278", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279463, 37.828294 ], [ -122.279506, 37.828362 ], [ -122.280450, 37.828294 ], [ -122.281823, 37.827955 ], [ -122.283025, 37.827582 ] ] } } diff --git a/tests/stable/out/-z20_-Z20.json b/tests/stable/out/-z20_-Z20.json index 43583b6..cf1867f 100644 --- a/tests/stable/out/-z20_-Z20.json +++ b/tests/stable/out/-z20_-Z20.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 168937, "y": 408137 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ -122.000000, 37.000000 ] } } @@ -27,7 +27,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 909311, "y": 590848 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } @@ -49,7 +49,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 909311, "y": 590847 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } @@ -71,7 +71,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 909312, "y": 590848 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } @@ -93,7 +93,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 20, "x": 909312, "y": 590847 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } diff --git a/tests/stable/out/-z3_-B0.json b/tests/stable/out/-z3_-B0.json index 212f3d1..2ac1df1 100644 --- a/tests/stable/out/-z3_-B0.json +++ b/tests/stable/out/-z3_-B0.json @@ -11,7 +11,7 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.020098 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ -122.080078, 37.020098 ] } } @@ -45,7 +45,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.020098 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ -122.036133, 37.020098 ] } } @@ -61,7 +61,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } @@ -83,7 +83,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.002553 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ -122.014160, 37.002553 ] } } @@ -99,7 +99,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } @@ -121,7 +121,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.002553 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ -122.003174, 37.002553 ] } } @@ -137,7 +137,7 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "order": "one" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } , { "type": "Feature", "properties": { "order": "two" }, "geometry": { "type": "Point", "coordinates": [ 132.187500, -22.268764 ] } } diff --git a/tests/tl_2015_us_county/out/-z8.json b/tests/tl_2015_us_county/out/-z8.json index a37e83a..bf4fa83 100644 --- a/tests/tl_2015_us_county/out/-z8.json +++ b/tests/tl_2015_us_county/out/-z8.json @@ -11,113 +11,113 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ] ] ], [ [ [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ] ], [ [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ] ] ], [ [ [ -69.730225, 45.836454 ], [ -69.724731, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.730225, 45.836454 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.813486 ] ], [ [ -69.724731, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.724731, 45.836454 ] ], [ [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.735718, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ] ] ], [ [ [ -69.727478, 45.834540 ], [ -69.721985, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.727478, 45.834540 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.832627 ], [ -69.710999, 45.811572 ] ], [ [ -69.721985, 45.834540 ], [ -69.727478, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.721985, 45.834540 ] ], [ [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.833221, 45.738777 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.792023, 45.758901 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ] ] ], [ [ [ -69.809875, 45.722480 ], [ -69.815369, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.809875, 45.722480 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ] ] ], [ [ [ -69.789276, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ] ] ], [ [ [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.833221, 45.738777 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.722480 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.256195, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ] ], [ [ -69.787903, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.787903, 45.783806 ] ], [ [ -69.815369, 45.721522 ], [ -69.809875, 45.722480 ], [ -69.809875, 45.723439 ], [ -69.815369, 45.721522 ] ], [ [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ] ], [ [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.792023, 45.785721 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062273 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ] ] ], [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ] ] ], [ [ [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ] ] ], [ [ [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ] ] ], [ [ [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ] ] ], [ [ [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ] ] ], [ [ [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.674606, 45.862281 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.809189, 45.722960 ], [ -69.813309, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784285 ], [ -69.788589, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.792023, 45.784285 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750824, 45.764649 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ] ] ], [ [ [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ] ] ], [ [ [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798203, 45.784764 ], [ -69.798203, 45.784285 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ] ] ], [ [ [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.667053, 45.927274 ], [ -70.259628, 45.927274 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ] ], [ [ -70.107880, 46.388149 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ] ] ], [ [ [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784285 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.813309, 45.722001 ], [ -69.809189, 45.722960 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.927274 ], [ -69.667053, 45.927274 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.764649 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.796143, 45.784285 ] ], [ [ -69.798203, 45.784285 ], [ -69.798203, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.798203, 45.784285 ] ], [ [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ] ], [ [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ] ] ] ] } } @@ -125,35 +125,35 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ] ] ], [ [ [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ] ] ], [ [ [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ] ] ], [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ] ] ], [ [ [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285378, 46.182445 ], [ -70.286064, 46.182921 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ], [ [ [ -70.285034, 46.182445 ], [ -70.285034, 46.100138 ], [ -70.285378, 46.182445 ], [ -70.285034, 46.182445 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 92 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.794769, 45.757703 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875668 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879493 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.734943 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ] ], [ [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ] ] ], [ [ [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785243 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ] ], [ [ -69.797516, 45.784524 ], [ -69.797173, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.796829, 45.784285 ], [ -69.797516, 45.784524 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -68.878784, 45.734943 ], [ -68.878784, 45.676202 ] ] ], [ [ [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875668 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805589 ], [ -70.339966, 45.805589 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.724731, 45.879493 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ] ], [ [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.805589 ], [ -69.713058, 45.805589 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } @@ -161,23 +161,23 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ] ] ], [ [ [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ] ] ] } } ] } ] } diff --git a/tests/tl_2015_us_county/out/-z8_-pp.json b/tests/tl_2015_us_county/out/-z8_-pp.json index 106f39e..f2cc026 100644 --- a/tests/tl_2015_us_county/out/-z8_-pp.json +++ b/tests/tl_2015_us_county/out/-z8_-pp.json @@ -11,167 +11,167 @@ "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ] ] ], [ [ [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ] ], [ [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ] ] ], [ [ [ -69.730225, 45.836454 ], [ -69.724731, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.730225, 45.836454 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.813486 ] ], [ [ -69.724731, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.724731, 45.836454 ] ], [ [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.735718, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ] ] ], [ [ [ -69.727478, 45.834540 ], [ -69.721985, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.727478, 45.834540 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.832627 ], [ -69.710999, 45.811572 ] ], [ [ -69.721985, 45.834540 ], [ -69.727478, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.721985, 45.834540 ] ], [ [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.833221, 45.738777 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.792023, 45.758901 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ] ] ], [ [ [ -69.809875, 45.722480 ], [ -69.815369, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.809875, 45.722480 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ] ] ], [ [ [ -69.789276, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ] ] ], [ [ [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.833221, 45.738777 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.722480 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.256195, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ] ], [ [ -69.787903, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.787903, 45.783806 ] ], [ [ -69.815369, 45.721522 ], [ -69.809875, 45.722480 ], [ -69.809875, 45.723439 ], [ -69.815369, 45.721522 ] ], [ [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ] ], [ [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.792023, 45.785721 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062273 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ] ] ], [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ] ] ], [ [ [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ] ] ], [ [ [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ] ] ], [ [ [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ] ] ], [ [ [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 46 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ] ] ], [ [ [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.674606, 45.862281 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.809189, 45.722960 ], [ -69.813309, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784285 ], [ -69.788589, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.792023, 45.784285 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750824, 45.764649 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ] ] ], [ [ [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ] ] ], [ [ [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798203, 45.784764 ], [ -69.798203, 45.784285 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ] ] ], [ [ [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ] ] ], [ [ [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.764649 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784285 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.813309, 45.722001 ], [ -69.809189, 45.722960 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ] ], [ [ -70.107880, 46.388149 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ] ], [ [ -69.798203, 45.784285 ], [ -69.798203, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.798203, 45.784285 ] ], [ [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ] ], [ [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ] ] ], [ [ [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ] ] ], [ [ [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ] ] ], [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ] ] ], [ [ [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285378, 46.182445 ], [ -70.286064, 46.182921 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ], [ [ [ -70.285034, 46.182445 ], [ -70.285034, 46.100138 ], [ -70.285378, 46.182445 ], [ -70.285034, 46.182445 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 92 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.794769, 45.757703 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875668 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879493 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ] ], [ [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ] ] ], [ [ [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ] ] ], [ [ [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785243 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ] ], [ [ -69.797516, 45.784524 ], [ -69.797173, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.796829, 45.784285 ], [ -69.797516, 45.784524 ] ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ] ], [ [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.724731, 45.879493 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875668 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ] ] ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 91 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ] ] ], [ [ [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 90 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "piscataquis" }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ] ] ] } } ] } ] } diff --git a/version.hpp b/version.hpp index b6c6843..c88c995 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.12.0\n" +#define VERSION "tippecanoe v1.12.1\n"